/* ═══════════════════════════════════════════════════════════════
   TRENDYX — "MIDNIGHT ROSE" DESIGN SYSTEM
   Premium Turkish Jewelry (Taki) E-Commerce
   Astra Child Theme — Production CSS
   ═══════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────────────
   1. DESIGN TOKENS
   ───────────────────────────────────────────────────────────── */

:root {
    /* Core palette */
    --tx-deep: #0D0B0E;
    --tx-midnight: #1A1520;
    --tx-rose: #C4727F;
    --tx-rose-dark: #A85B67;
    --tx-rose-light: #E8A5AE;
    --tx-rose-glow: rgba(196, 114, 127, 0.12);

    /* Neutrals */
    --tx-white: #FEFDFB;
    --tx-cream: #F5F0EB;
    --tx-sand: #E8E0D8;
    --tx-taupe: #9B8F85;
    --tx-charcoal: #3D3539;

    /* Metals */
    --tx-gold: #D4A853;
    --tx-silver: #C0C0C0;
    --tx-rosegold: #B76E79;

    /* State */
    --tx-success: #6B8F71;
    --tx-danger: #C75050;

    /* Typography */
    --tx-font-display: 'Cormorant Garamond', Georgia, serif;
    --tx-font-body: 'DM Sans', -apple-system, sans-serif;
    --tx-font-accent: 'Cormorant', Georgia, serif;

    /* Shadows */
    --tx-shadow-sm: 0 2px 8px rgba(13, 11, 14, 0.06);
    --tx-shadow-md: 0 4px 20px rgba(13, 11, 14, 0.08);
    --tx-shadow-lg: 0 12px 40px rgba(13, 11, 14, 0.12);
    --tx-shadow-xl: 0 20px 60px rgba(13, 11, 14, 0.16);
    --tx-shadow-rose: 0 8px 30px rgba(196, 114, 127, 0.2);
    --tx-shadow-glow: 0 0 40px rgba(196, 114, 127, 0.15);

    /* Motion */
    --tx-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --tx-ease-out: cubic-bezier(0.165, 0.84, 0.44, 1);
    --tx-duration: 0.3s;
    --tx-duration-slow: 0.6s;

    /* Radii */
    --tx-radius-sm: 4px;
    --tx-radius-md: 8px;
    --tx-radius-lg: 16px;
    --tx-radius-xl: 24px;
    --tx-radius-pill: 100px;
}


/* ─────────────────────────────────────────────────────────────
   2. BASE / RESET
   ───────────────────────────────────────────────────────────── */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--tx-font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: var(--tx-charcoal);
    background-color: var(--tx-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6,
.entry-title,
.page-title,
.woocommerce-loop-product__title {
    font-family: var(--tx-font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--tx-deep);
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
h4 { font-size: 1.25rem; }

a {
    color: var(--tx-charcoal);
    text-decoration: none;
    transition: color var(--tx-duration) var(--tx-ease);
}

a:hover,
a:focus-visible {
    color: var(--tx-rose);
}

::selection {
    background: var(--tx-rose);
    color: var(--tx-white);
}

::-moz-selection {
    background: var(--tx-rose);
    color: var(--tx-white);
}

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

p {
    margin-bottom: 1.25em;
}


/* ─────────────────────────────────────────────────────────────
   3. HEADER — ASTRA OVERRIDES
   ───────────────────────────────────────────────────────────── */

.ast-primary-header-bar,
.ast-main-header-wrap,
.main-header-bar,
.ast-above-header-bar {
    background: var(--tx-deep) !important;
}

.ast-below-header-bar {
    background: var(--tx-midnight) !important;
}

/* Site title / logo */
.site-title a,
.ast-site-title-wrap a {
    font-family: var(--tx-font-display) !important;
    letter-spacing: 0.08em !important;
    color: var(--tx-white) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
}

/* Navigation links */
.ast-builder-menu-1 .menu-item > .menu-link,
.main-header-menu > .menu-item > .menu-link {
    font-family: var(--tx-font-body) !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    color: rgba(254, 253, 251, 0.72) !important;
    transition: color var(--tx-duration) var(--tx-ease) !important;
}

.ast-builder-menu-1 .menu-item:hover > .menu-link,
.ast-builder-menu-1 .menu-item.current-menu-item > .menu-link,
.main-header-menu > .menu-item:hover > .menu-link,
.main-header-menu > .menu-item.current-menu-item > .menu-link {
    color: var(--tx-rose) !important;
}

/* Submenu dropdown */
.ast-builder-menu-1 .sub-menu,
.main-header-menu .sub-menu {
    background: var(--tx-midnight) !important;
    border-top: 2px solid var(--tx-rose) !important;
    border-radius: 0 0 var(--tx-radius-md) var(--tx-radius-md) !important;
    box-shadow: var(--tx-shadow-lg) !important;
}

.ast-builder-menu-1 .sub-menu .menu-link,
.main-header-menu .sub-menu .menu-link {
    color: rgba(254, 253, 251, 0.65) !important;
    font-size: 12.5px !important;
}

.ast-builder-menu-1 .sub-menu .menu-item:hover > .menu-link,
.main-header-menu .sub-menu .menu-item:hover > .menu-link {
    color: var(--tx-rose) !important;
    background: rgba(196, 114, 127, 0.08) !important;
}

/* Hide Astra's native cart icon & old Evodora cart */
.ast-header-woo-cart,
.ast-site-header-cart,
.ast-woo-header-cart-info-wrap,
li.woocommerce-custom-menu-item,
.evo-header-cart-btn {
    display: none !important;
}

/* Our menu cart item */
.tx-header-cart-li .tx-cart-trigger {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    border: 1.5px solid var(--tx-rose) !important;
    border-radius: 100px !important;
    padding: 6px 16px !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.tx-header-cart-li .tx-cart-trigger:hover {
    background: var(--tx-rose) !important;
}

.tx-header-cart-li .tx-cart-trigger svg {
    stroke: #fff !important;
    fill: none !important;
}

/* Mobile header — dark background throughout */
.ast-mobile-header-wrap,
.ast-mobile-header-content,
.ast-mobile-header-content .main-header-bar-navigation,
.ast-mobile-header-content .main-navigation,
.ast-mobile-header-content nav,
.ast-mobile-popup-content,
.ast-mobile-popup-inner {
    background: var(--tx-midnight) !important;
}

.ast-button-wrap .ast-mobile-menu-trigger-minimal {
    color: var(--tx-white) !important;
}

/* Mobile menu links — ALL types (menu-item AND page_item) */
.ast-mobile-header-content a,
.ast-mobile-header-content .menu-link,
.ast-mobile-header-content .page_item a,
.ast-mobile-header-content .menu-item > .menu-link,
.ast-mobile-popup-content a,
.ast-mobile-popup-content .menu-link,
.ast-mobile-popup-content .page_item a,
.ast-header-break-point .main-header-bar-navigation a,
.ast-header-break-point .main-navigation a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: var(--tx-font-body) !important;
    font-size: 15px !important;
    padding: 12px 20px !important;
    display: block !important;
}

.ast-mobile-header-content a:hover,
.ast-mobile-header-content .current-menu-item > a,
.ast-mobile-header-content .current_page_item > a,
.ast-mobile-popup-content a:hover,
.ast-mobile-popup-content .current-menu-item > a {
    color: var(--tx-rose) !important;
}

/* Mobile menu dividers */
.ast-mobile-header-content .page_item,
.ast-mobile-header-content .menu-item,
.ast-mobile-popup-content .page_item,
.ast-mobile-popup-content .menu-item,
.ast-header-break-point .main-header-bar-navigation .menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    list-style: none !important;
}

/* Mobile popup/menu close button */
.ast-mobile-popup-close,
.ast-mobile-popup-close svg,
.menu-toggle svg,
.ast-mobile-menu-trigger-minimal svg {
    fill: var(--tx-white) !important;
    color: var(--tx-white) !important;
}

/* Cart menu item — hide on mobile (FAB handles it) */
@media (max-width: 921px) {
    .tx-header-cart,
    .tx-header-cart-li {
        display: none !important;
    }
}


/* ─────────────────────────────────────────────────────────────
   4. BUTTONS
   ───────────────────────────────────────────────────────────── */

/* Primary button */
.tx-btn,
.button,
.woocommerce .button,
input[type="submit"],
.wp-block-button__link,
.woocommerce #respond input#submit,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce a.button.alt,
.woocommerce #payment #place_order {
    background: var(--tx-rose) !important;
    color: var(--tx-white) !important;
    border: none !important;
    border-radius: var(--tx-radius-pill) !important;
    font-family: var(--tx-font-body) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    padding: 14px 32px !important;
    cursor: pointer !important;
    transition: all var(--tx-duration) var(--tx-ease) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1.4 !important;
}

.tx-btn:hover,
.button:hover,
.woocommerce .button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover,
.woocommerce #respond input#submit:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce #payment #place_order:hover {
    background: var(--tx-rose-dark) !important;
    color: var(--tx-white) !important;
    transform: translateY(-1px);
    box-shadow: var(--tx-shadow-rose) !important;
}

/* Secondary button */
.tx-btn-secondary {
    background: var(--tx-deep) !important;
    color: var(--tx-white) !important;
    border: none !important;
    border-radius: var(--tx-radius-pill) !important;
    font-family: var(--tx-font-body) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    padding: 14px 32px !important;
    cursor: pointer;
    transition: all var(--tx-duration) var(--tx-ease) !important;
}

.tx-btn-secondary:hover {
    background: var(--tx-rose) !important;
    color: var(--tx-white) !important;
}

/* Outline button */
.tx-btn-outline {
    background: transparent !important;
    color: var(--tx-charcoal) !important;
    border: 2px solid var(--tx-sand) !important;
    border-radius: var(--tx-radius-pill) !important;
    font-family: var(--tx-font-body) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    padding: 12px 30px !important;
    cursor: pointer;
    transition: all var(--tx-duration) var(--tx-ease) !important;
}

.tx-btn-outline:hover {
    border-color: var(--tx-rose) !important;
    color: var(--tx-rose) !important;
}


/* ─────────────────────────────────────────────────────────────
   5. PRODUCT CARDS — WOOCOMMERCE SHOP GRID
   ───────────────────────────────────────────────────────────── */

/* Grid layout */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 0;
    list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
}

/* Individual card — base layout only, visual styling in woocommerce.css */
.woocommerce ul.products li.product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
}

/* Hover image swap */
.tx-hover-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity var(--tx-duration-slow) var(--tx-ease);
    z-index: 1;
}

.woocommerce ul.products li.product:hover .tx-hover-image {
    opacity: 1;
}

/* Product card info, title, price, buttons — all managed by woocommerce.css */
/* Only global star rating color kept here */
.woocommerce .star-rating {
    color: var(--tx-rose) !important;
}
.woocommerce .star-rating::before {
    color: var(--tx-sand) !important;
}


/* ─────────────────────────────────────────────────────────────
   6. SIDE CART DRAWER
   ───────────────────────────────────────────────────────────── */

/* Overlay */
.tx-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 11, 14, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--tx-duration) var(--tx-ease),
                visibility var(--tx-duration) var(--tx-ease);
}

.tx-cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Drawer panel */
.tx-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    height: 100dvh;
    background: var(--tx-white);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s var(--tx-ease-out);
    box-shadow: var(--tx-shadow-xl);
}

.tx-cart-drawer.open {
    transform: translateX(0);
}

/* Drawer header */
.tx-cart-header {
    background: var(--tx-deep);
    color: var(--tx-white);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.tx-cart-header h3 {
    font-family: var(--tx-font-display);
    font-weight: 600;
    font-size: 22px;
    color: var(--tx-white);
    margin: 0;
    letter-spacing: 0.02em;
}

.tx-cart-close {
    background: none;
    border: none;
    color: rgba(254, 253, 251, 0.6);
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
    transition: color var(--tx-duration) var(--tx-ease);
    line-height: 1;
}

.tx-cart-close:hover {
    color: var(--tx-rose);
}

/* Cart items list */
.tx-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
    overscroll-behavior: contain;
}

/* Individual cart item */
.tx-cart-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--tx-cream);
}

.tx-cart-item:last-child {
    border-bottom: none;
}

.tx-cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--tx-radius-md);
    object-fit: cover;
    flex-shrink: 0;
    background: var(--tx-cream);
}

.tx-cart-item-info {
    flex: 1;
    min-width: 0;
}

.tx-cart-item-name {
    font-family: var(--tx-font-body);
    font-weight: 500;
    font-size: 14px;
    color: var(--tx-charcoal);
    margin-bottom: 4px;
    line-height: 1.35;
}

.tx-cart-item-price {
    font-family: var(--tx-font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--tx-charcoal);
}

.tx-cart-item-remove {
    background: none;
    border: none;
    color: var(--tx-taupe);
    font-size: 18px;
    cursor: pointer;
    padding: 2px;
    transition: color var(--tx-duration) var(--tx-ease);
    flex-shrink: 0;
    line-height: 1;
}

.tx-cart-item-remove:hover {
    color: var(--tx-rose);
}

/* Cart footer */
.tx-cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--tx-sand);
    flex-shrink: 0;
    background: var(--tx-white);
}

.tx-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.tx-cart-subtotal-label {
    font-family: var(--tx-font-body);
    font-weight: 500;
    font-size: 14px;
    color: var(--tx-taupe);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tx-cart-subtotal-value {
    font-family: var(--tx-font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--tx-deep);
}

/* Shipping progress bar */
.tx-shipping-progress {
    margin-bottom: 18px;
}

.tx-shipping-progress-text {
    font-size: 12px;
    color: var(--tx-taupe);
    margin-bottom: 8px;
    text-align: center;
}

.tx-shipping-progress-bar {
    width: 100%;
    height: 4px;
    background: var(--tx-cream);
    border-radius: var(--tx-radius-pill);
    overflow: hidden;
}

.tx-shipping-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--tx-rose), var(--tx-rose-light));
    border-radius: var(--tx-radius-pill);
    transition: width var(--tx-duration-slow) var(--tx-ease-out);
}

/* Cart CTA buttons */
.tx-cart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tx-cart-actions .tx-btn {
    width: 100%;
    justify-content: center;
}

/* Empty cart state */
.tx-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 32px;
    flex: 1;
}

.tx-cart-empty-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.35;
}

.tx-cart-empty-text {
    font-family: var(--tx-font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--tx-charcoal);
    margin-bottom: 8px;
}

.tx-cart-empty-subtext {
    font-size: 14px;
    color: var(--tx-taupe);
    margin-bottom: 28px;
    line-height: 1.5;
}


/* ─────────────────────────────────────────────────────────────
   7. MOBILE CART FAB
   ───────────────────────────────────────────────────────────── */

.tx-mobile-cart-fab {
    position: fixed;
    left: 12px;
    bottom: 24px;
    background: var(--tx-deep);
    color: var(--tx-white);
    border: none;
    border-radius: var(--tx-radius-pill);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--tx-font-body);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    z-index: 900;
    box-shadow: var(--tx-shadow-lg);
    transition: all var(--tx-duration) var(--tx-ease);
}

.tx-mobile-cart-fab:hover {
    box-shadow: var(--tx-shadow-xl);
    transform: translateY(-2px);
}

.tx-mobile-cart-fab svg {
    width: 18px;
    height: 18px;
    fill: var(--tx-rose);
}

.tx-mobile-cart-fab-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--tx-rose);
    color: var(--tx-white);
    font-size: 10px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}


/* ─────────────────────────────────────────────────────────────
   8. FOOTER
   ───────────────────────────────────────────────────────────── */

.site-footer,
.ast-footer-overlay {
    background: var(--tx-deep) !important;
    color: rgba(254, 253, 251, 0.55) !important;
}

.site-footer * {
    color: inherit;
}

.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer .widget-title {
    color: var(--tx-white) !important;
    font-family: var(--tx-font-display) !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
}

.site-footer a {
    color: rgba(254, 253, 251, 0.55) !important;
    transition: color var(--tx-duration) var(--tx-ease);
}

.site-footer a:hover {
    color: var(--tx-rose) !important;
}

/* Newsletter input in footer */
.site-footer .mc4wp-form input[type="email"],
.site-footer .newsletter-input {
    background: var(--tx-midnight);
    border: 1px solid rgba(254, 253, 251, 0.12);
    border-radius: var(--tx-radius-pill);
    color: var(--tx-white);
    padding: 14px 20px;
    font-family: var(--tx-font-body);
    font-size: 14px;
    width: 100%;
    transition: border-color var(--tx-duration) var(--tx-ease);
}

.site-footer .mc4wp-form input[type="email"]:focus,
.site-footer .newsletter-input:focus {
    border-color: var(--tx-rose);
    outline: none;
    box-shadow: 0 0 0 3px var(--tx-rose-glow);
}

.site-footer .mc4wp-form input[type="submit"],
.site-footer .newsletter-btn {
    background: var(--tx-rose) !important;
    border-radius: var(--tx-radius-pill) !important;
    margin-top: 8px;
}

/* Payment badges */
.tx-payment-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0.5;
    transition: opacity var(--tx-duration) var(--tx-ease);
}

.tx-payment-badges:hover {
    opacity: 0.8;
}

.tx-payment-badges img {
    height: 24px;
    width: auto;
}

/* Footer bottom bar */
.ast-footer-copyright {
    border-top: 1px solid rgba(254, 253, 251, 0.08) !important;
}


/* ─────────────────────────────────────────────────────────────
   9. SCROLL-TO-TOP BUTTON
   ───────────────────────────────────────────────────────────── */

/* Hide Astra's default scroll-to-top — we use our own */
#ast-scroll-top,
.ast-scroll-top-icon {
    display: none !important;
    visibility: hidden !important;
}

.tx-scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    background: var(--tx-rose) !important;
    color: var(--tx-white) !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    box-shadow: 0 4px 20px rgba(196, 114, 127, 0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.tx-scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.tx-scroll-top:hover {
    background: var(--tx-rose-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--tx-shadow-rose);
}

.tx-scroll-top svg,
.tx-scroll-top svg * {
    fill: none !important;
}

.tx-scroll-top svg {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
    overflow: visible !important;
}

.tx-scroll-top svg path {
    stroke: #ffffff !important;
    stroke-width: 2.5 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    fill: none !important;
}

@media (max-width: 480px) {
    .tx-scroll-top {
        right: 14px;
        bottom: 14px;
        width: 42px;
        height: 42px;
    }
}


/* ─────────────────────────────────────────────────────────────
   10. SHOP HERO SECTION
   ───────────────────────────────────────────────────────────── */

.tx-shop-hero {
    background: linear-gradient(145deg, var(--tx-deep), var(--tx-midnight));
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tx-shop-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 120%, var(--tx-rose-glow), transparent 60%);
    pointer-events: none;
}

.tx-shop-hero h1 {
    font-family: var(--tx-font-display);
    color: var(--tx-white);
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.tx-shop-hero p {
    color: rgba(254, 253, 251, 0.6);
    font-size: 16px;
    max-width: 540px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Breadcrumbs */
.woocommerce-breadcrumb,
.tx-breadcrumb {
    font-family: var(--tx-font-body);
    font-size: 13px;
    color: var(--tx-cream);
    margin-bottom: 16px;
}

.woocommerce-breadcrumb a,
.tx-breadcrumb a {
    color: rgba(245, 240, 235, 0.6);
    transition: color var(--tx-duration) var(--tx-ease);
}

.woocommerce-breadcrumb a:hover,
.tx-breadcrumb a:hover {
    color: var(--tx-rose);
}

.woocommerce-breadcrumb .breadcrumb-separator,
.tx-breadcrumb-sep {
    color: var(--tx-rose);
    margin: 0 8px;
}


/* ─────────────────────────────────────────────────────────────
   11. FORMS
   ───────────────────────────────────────────────────────────── */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="number"],
textarea,
select,
.woocommerce-input-wrapper input,
.woocommerce-input-wrapper textarea {
    border: 1px solid var(--tx-sand);
    border-radius: var(--tx-radius-md);
    padding: 14px 18px;
    font-family: var(--tx-font-body);
    font-size: 15px;
    color: var(--tx-charcoal);
    background: var(--tx-white);
    width: 100%;
    transition: border-color var(--tx-duration) var(--tx-ease),
                box-shadow var(--tx-duration) var(--tx-ease);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    border-color: var(--tx-rose);
    outline: none;
    box-shadow: 0 0 0 3px var(--tx-rose-glow);
}

label,
.woocommerce form .form-row label {
    font-family: var(--tx-font-body);
    font-weight: 500;
    font-size: 14px;
    color: var(--tx-charcoal);
    margin-bottom: 6px;
    display: block;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239B8F85'%3E%3Cpath d='M6 8.825L0.35 3.175l.7-.7L6 7.425l4.95-4.95.7.7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}


/* ─────────────────────────────────────────────────────────────
   12. LEGAL PAGE TOC SIDEBAR
   ───────────────────────────────────────────────────────────── */

.tx-legal-toc {
    position: sticky;
    top: 100px;
    padding: 24px;
    background: var(--tx-cream);
    border-radius: var(--tx-radius-lg);
    border: 1px solid var(--tx-sand);
}

.tx-legal-toc h4 {
    font-family: var(--tx-font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--tx-deep);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--tx-sand);
}

.tx-legal-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tx-legal-toc li {
    margin-bottom: 2px;
}

.tx-legal-toc a {
    display: block;
    padding: 8px 12px;
    font-family: var(--tx-font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--tx-taupe);
    border-radius: var(--tx-radius-sm);
    transition: all var(--tx-duration) var(--tx-ease);
}

.tx-legal-toc a:hover,
.tx-legal-toc a.active {
    color: var(--tx-rose);
    background: var(--tx-rose-glow);
}

.tx-legal-toc a.active {
    font-weight: 500;
}


/* ─────────────────────────────────────────────────────────────
   13. SCROLL REVEAL ANIMATIONS
   ───────────────────────────────────────────────────────────── */

.tx-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--tx-duration-slow) var(--tx-ease-out),
                transform var(--tx-duration-slow) var(--tx-ease-out);
}

.tx-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.tx-delay-1 { transition-delay: 0.1s; }
.tx-delay-2 { transition-delay: 0.2s; }
.tx-delay-3 { transition-delay: 0.3s; }
.tx-delay-4 { transition-delay: 0.4s; }


/* ─────────────────────────────────────────────────────────────
   14. KEYFRAME ANIMATIONS
   ───────────────────────────────────────────────────────────── */

@keyframes txSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes txSparkle {
    0%, 100% { opacity: 0.4; }
    50%      { opacity: 1; }
}

@keyframes txSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility classes for animations */
.tx-spin {
    animation: txSpin 0.6s linear infinite;
}

.tx-sparkle {
    animation: txSparkle 2s ease-in-out infinite;
}

.tx-slide-up {
    animation: txSlideUp 0.4s var(--tx-ease-out) forwards;
}

/* Toast notification animation */
.tx-toast {
    animation: txSlideUp 0.35s var(--tx-ease-out) forwards;
}


/* ─────────────────────────────────────────────────────────────
   15. RESPONSIVE — 1440px+ (FULL DESKTOP)
   ───────────────────────────────────────────────────────────── */

@media (min-width: 1440px) {
    .woocommerce ul.products {
        gap: 36px;
    }

    .tx-shop-hero {
        padding: 80px 60px;
    }
}


/* ─────────────────────────────────────────────────────────────
   16. RESPONSIVE — 1024px (LARGE TABLET)
   ───────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tx-shop-hero {
        padding: 48px 28px;
    }

    .tx-cart-drawer {
        width: 380px;
    }

    .tx-legal-toc {
        position: static;
        margin-bottom: 32px;
    }
}


/* ─────────────────────────────────────────────────────────────
   17. RESPONSIVE — 768px (TABLET)
   ───────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .woocommerce ul.products li.product .astra-shop-summary-wrap {
        padding: 12px 14px 16px;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 13px !important;
    }

    .woocommerce ul.products li.product .price {
        font-size: 16px !important;
    }

    .tx-shop-hero {
        padding: 36px 20px;
    }

    .tx-cart-drawer {
        width: 100%;
        max-width: 100vw;
    }

    .tx-scroll-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
}


/* ─────────────────────────────────────────────────────────────
   18. RESPONSIVE — 640px (LARGE MOBILE)
   ───────────────────────────────────────────────────────────── */

@media (max-width: 640px) {
    .woocommerce ul.products li.product .button,
    .woocommerce ul.products li.product .added_to_cart {
        font-size: 11px !important;
        padding: 10px 16px !important;
    }

    .tx-cart-header {
        padding: 16px 20px;
    }

    .tx-cart-items {
        padding: 12px 20px;
    }

    .tx-cart-footer {
        padding: 16px 20px;
    }

    .tx-mobile-cart-fab {
        left: 10px;
        bottom: 20px;
        padding: 10px 16px;
        font-size: 12px;
    }
}


/* ─────────────────────────────────────────────────────────────
   19. RESPONSIVE — 480px (SMALL MOBILE)
   ───────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .woocommerce ul.products li.product .astra-shop-thumbnail-wrap {
        aspect-ratio: 4 / 5;
    }

    .tx-shop-hero {
        padding: 28px 16px;
    }

    .tx-shop-hero h1 {
        font-size: 1.6rem;
    }

    .tx-btn,
    .button,
    input[type="submit"] {
        padding: 12px 24px !important;
        font-size: 12px !important;
    }

    .tx-cart-item-image {
        width: 50px;
        height: 50px;
    }

    .tx-cart-subtotal-value {
        font-size: 20px;
    }
}


/* ─────────────────────────────────────────────────────────────
   20. UTILITY CLASSES
   ───────────────────────────────────────────────────────────── */

/* Visually hidden but accessible */
.tx-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;
}

/* Loading spinner */
.tx-spinner {
    width: 24px;
    height: 24px;
    border: 2.5px solid var(--tx-sand);
    border-top-color: var(--tx-rose);
    border-radius: 50%;
    animation: txSpin 0.6s linear infinite;
}

.tx-spinner-lg {
    width: 40px;
    height: 40px;
    border-width: 3px;
}

/* Section spacing */
.tx-section {
    padding: 64px 0;
}

.tx-section-sm {
    padding: 40px 0;
}

/* Container width override */
.tx-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Text utilities */
.tx-text-rose { color: var(--tx-rose) !important; }
.tx-text-deep { color: var(--tx-deep) !important; }
.tx-text-taupe { color: var(--tx-taupe) !important; }
.tx-text-white { color: var(--tx-white) !important; }

.tx-font-display { font-family: var(--tx-font-display) !important; }
.tx-font-body { font-family: var(--tx-font-body) !important; }
.tx-font-accent { font-family: var(--tx-font-accent) !important; }

/* Background utilities */
.tx-bg-deep { background: var(--tx-deep) !important; }
.tx-bg-midnight { background: var(--tx-midnight) !important; }
.tx-bg-cream { background: var(--tx-cream) !important; }
.tx-bg-rose-glow { background: var(--tx-rose-glow) !important; }

/* Divider */
.tx-divider {
    width: 60px;
    height: 2px;
    background: var(--tx-rose);
    border: none;
    margin: 20px auto;
}

.tx-divider-wide {
    width: 100%;
    height: 1px;
    background: var(--tx-sand);
    border: none;
}

/* Badge */
.tx-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: var(--tx-radius-pill);
    font-family: var(--tx-font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tx-badge-rose {
    background: var(--tx-rose-glow);
    color: var(--tx-rose);
}

.tx-badge-gold {
    background: rgba(212, 168, 83, 0.12);
    color: var(--tx-gold);
}

.tx-badge-success {
    background: rgba(107, 143, 113, 0.12);
    color: var(--tx-success);
}

.tx-badge-danger {
    background: rgba(199, 80, 80, 0.12);
    color: var(--tx-danger);
}


/* ═══════════════════════════════════════════════════════════════
   SIDE CART — SELECTOR ALIASES
   Maps HTML IDs/classes to existing CSS rules
   ═══════════════════════════════════════════════════════════════ */

/* Overlay alias */
#tx-side-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 11, 14, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--tx-duration) var(--tx-ease),
                visibility var(--tx-duration) var(--tx-ease);
}

#tx-side-cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Drawer alias */
#tx-side-cart {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    height: 100dvh;
    background: var(--tx-white);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s var(--tx-ease-out);
    box-shadow: var(--tx-shadow-xl);
}

#tx-side-cart.active,
#tx-side-cart.open {
    transform: translateX(0);
}

/* Side cart header */
.tx-side-cart-header {
    background: var(--tx-deep);
    color: var(--tx-white);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.tx-side-cart-header h3 {
    font-family: var(--tx-font-display);
    font-weight: 600;
    font-size: 22px;
    color: var(--tx-white);
    margin: 0;
    letter-spacing: 0.02em;
}

#tx-side-cart-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    padding: 4px 8px;
    transition: color 0.2s ease;
}
#tx-side-cart-close:hover {
    color: #fff;
}

/* Side cart content area */
.tx-side-cart-content {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
}

/* Side cart items list */
.tx-side-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
    overscroll-behavior: contain;
}

/* Side cart footer */
.tx-side-cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--tx-sand);
    flex-shrink: 0;
    background: var(--tx-white);
}

/* Side cart loader */
.tx-side-cart-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.tx-side-cart-loader .tx-spinner {
    width: 32px;
    height: 32px;
}

/* Side cart buttons */
.tx-side-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    border-radius: var(--tx-radius-pill);
    font-family: var(--tx-font-body);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--tx-duration) var(--tx-ease);
    text-decoration: none;
    text-align: center;
    border: none;
    gap: 8px;
    line-height: 1.4;
}

.tx-side-cart-btn-primary {
    background: var(--tx-rose);
    color: var(--tx-white);
}

.tx-side-cart-btn-primary:hover {
    background: var(--tx-rose-dark);
    color: var(--tx-white);
    transform: translateY(-1px);
    box-shadow: var(--tx-shadow-rose);
}

.tx-side-cart-btn-secondary {
    background: var(--tx-deep);
    color: var(--tx-white);
}

.tx-side-cart-btn-secondary:hover {
    background: var(--tx-rose);
    color: var(--tx-white);
}

/* Cart item aliases */
.tx-cart-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--tx-cream);
}

.tx-cart-item:last-child {
    border-bottom: none;
}

.tx-cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: var(--tx-radius-md);
    object-fit: cover;
    flex-shrink: 0;
    background: var(--tx-cream);
}

.tx-cart-item-info {
    flex: 1;
    min-width: 0;
}

.tx-cart-item-name {
    font-family: var(--tx-font-body);
    font-weight: 500;
    font-size: 14px;
    color: var(--tx-charcoal);
    margin-bottom: 4px;
    line-height: 1.35;
}

.tx-cart-item-meta {
    font-size: 12px;
    color: var(--tx-taupe);
    margin-bottom: 4px;
}

.tx-cart-item-qty {
    font-family: var(--tx-font-body);
    font-size: 13px;
    color: var(--tx-taupe);
    margin-bottom: 2px;
}

.tx-cart-item-price {
    font-family: var(--tx-font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--tx-charcoal);
}

.tx-cart-remove {
    background: none;
    border: none;
    color: var(--tx-taupe);
    font-size: 18px;
    cursor: pointer;
    padding: 2px;
    transition: color var(--tx-duration) var(--tx-ease);
    flex-shrink: 0;
    line-height: 1;
}

.tx-cart-remove:hover {
    color: var(--tx-rose);
}

/* Cart subtotal alias */
.tx-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

/* Shipping progress aliases */
.tx-shipping-progress {
    margin-bottom: 18px;
}

.tx-shipping-progress-bar {
    width: 100%;
    height: 4px;
    background: var(--tx-cream);
    border-radius: var(--tx-radius-pill);
    overflow: hidden;
}

.tx-shipping-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--tx-rose), var(--tx-rose-light));
    border-radius: var(--tx-radius-pill);
    transition: width var(--tx-duration-slow) var(--tx-ease-out);
}

.tx-shipping-progress-text {
    font-size: 12px;
    color: var(--tx-taupe);
    margin-bottom: 8px;
    text-align: center;
}

/* Empty cart aliases */
.tx-empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 32px;
    flex: 1;
}

.tx-empty-cart-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.35;
}

/* Side cart responsive */
@media (max-width: 1024px) {
    #tx-side-cart {
        width: 380px;
    }
}

@media (max-width: 768px) {
    #tx-side-cart {
        width: 100%;
        max-width: 100vw;
    }
}

@media (max-width: 640px) {
    .tx-side-cart-header {
        padding: 16px 20px;
    }

    .tx-side-cart-items {
        padding: 12px 20px;
    }

    .tx-side-cart-footer {
        padding: 16px 20px;
    }
}

@media (max-width: 480px) {
    .tx-cart-item-img {
        width: 50px;
        height: 50px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   A) HOMEPAGE HERO
   ═══════════════════════════════════════════════════════════════ */

.tx-hero {
    background: linear-gradient(135deg, var(--tx-deep) 0%, var(--tx-midnight) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.tx-hero-content {
    max-width: 640px;
}

.tx-overline {
    display: inline-block;
    font-family: var(--tx-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--tx-rose);
    margin-bottom: 16px;
}

.tx-hero-title {
    font-family: var(--tx-font-display);
    font-size: 60px;
    font-weight: 300;
    line-height: 1.1;
    color: var(--tx-white);
    margin-bottom: 20px;
}

.tx-hero-title em {
    font-style: italic;
    color: var(--tx-rose-light);
}

.tx-hero-subtitle {
    font-family: var(--tx-font-body);
    font-size: 17px;
    line-height: 1.7;
    color: rgba(254,253,251,0.6);
    margin-bottom: 32px;
    max-width: 500px;
}

.tx-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Hero dark-context button overrides */
.tx-hero .tx-btn-outline {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: var(--tx-white) !important;
}
.tx-hero .tx-btn-outline:hover {
    border-color: var(--tx-rose) !important;
    color: var(--tx-rose) !important;
    background: rgba(255, 255, 255, 0.06) !important;
}
.tx-hero .tx-btn-primary {
    background: var(--tx-rose) !important;
    color: #fff !important;
    border: none !important;
}
.tx-hero .tx-btn-primary:hover {
    background: var(--tx-rose-dark) !important;
}

.tx-hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.tx-stat {
    text-align: left;
}

.tx-stat-number {
    display: block;
    font-family: var(--tx-font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--tx-white);
}

.tx-stat-label {
    font-family: var(--tx-font-body);
    font-size: 12px;
    color: rgba(254,253,251,0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .tx-hero {
        min-height: 70vh;
        padding: 80px 0 60px;
    }

    .tx-hero-title {
        font-size: 40px;
    }

    .tx-hero-stats {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .tx-hero {
        min-height: auto;
        padding: 60px 0 40px;
    }

    .tx-hero-title {
        font-size: 32px;
    }

    .tx-hero-subtitle {
        font-size: 15px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   B) TRUST BAR
   ═══════════════════════════════════════════════════════════════ */

.tx-trust-bar {
    background: var(--tx-cream);
    padding: 24px 0;
    border-bottom: 1px solid var(--tx-sand);
}

.tx-trust-bar-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.tx-trust-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tx-trust-bar-icon {
    color: var(--tx-rose);
    flex-shrink: 0;
}

.tx-trust-bar-icon svg {
    width: 20px;
    height: 20px;
}

.tx-trust-bar-text {
    font-family: var(--tx-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--tx-charcoal);
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .tx-trust-bar-grid {
        gap: 24px;
    }

    .tx-trust-bar-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .tx-trust-bar-grid {
        flex-direction: column;
        gap: 16px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   C) SECTION HEADERS
   ═══════════════════════════════════════════════════════════════ */

.tx-section-title {
    font-family: var(--tx-font-display);
    font-size: 40px;
    font-weight: 500;
    color: var(--tx-charcoal);
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.2;
}

.tx-section-subtitle {
    font-family: var(--tx-font-body);
    font-size: 16px;
    color: var(--tx-taupe);
    text-align: center;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.tx-divider {
    width: 60px;
    height: 2px;
    background: var(--tx-rose);
    margin: 12px auto 16px;
    border: none;
}

.tx-highlight {
    color: var(--tx-rose);
}

@media (max-width: 768px) {
    .tx-section-title {
        font-size: 32px;
    }

    .tx-section-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }
}

@media (max-width: 480px) {
    .tx-section-title {
        font-size: 26px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   D) PRODUCT SECTIONS
   ═══════════════════════════════════════════════════════════════ */

.tx-new-arrivals,
.tx-bestsellers {
    padding: 80px 0;
}

.tx-bestsellers {
    background: var(--tx-cream);
}

@media (max-width: 768px) {
    .tx-new-arrivals,
    .tx-bestsellers {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .tx-new-arrivals,
    .tx-bestsellers {
        padding: 40px 0;
    }
}


/* ═══════════════════════════════════════════════════════════════
   E) CATEGORIES
   ═══════════════════════════════════════════════════════════════ */

.tx-categories {
    padding: 80px 0;
    background: var(--tx-white);
}

.tx-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tx-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 16px;
    background: var(--tx-cream);
    border: 1px solid var(--tx-sand);
    border-radius: var(--tx-radius-lg);
    text-decoration: none;
    transition: all 0.3s var(--tx-ease);
}

.tx-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tx-shadow-lg);
    border-color: var(--tx-rose);
}

.tx-category-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.tx-category-name {
    font-family: var(--tx-font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--tx-charcoal);
    margin-bottom: 4px;
}

.tx-category-count {
    font-family: var(--tx-font-body);
    font-size: 13px;
    color: var(--tx-taupe);
}

@media (max-width: 768px) {
    .tx-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tx-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tx-category-card {
        padding: 24px 12px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   F) BRAND STORY
   ═══════════════════════════════════════════════════════════════ */

.tx-brand-story {
    background: var(--tx-deep);
    padding: 100px 0;
    color: var(--tx-white);
}

.tx-brand-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tx-brand-story-quote {
    position: relative;
}

.tx-quote-mark {
    font-family: var(--tx-font-display);
    font-size: 120px;
    color: var(--tx-rose);
    opacity: 0.3;
    line-height: 1;
    position: absolute;
    top: -30px;
    left: -10px;
}

.tx-brand-story-quote blockquote {
    font-family: var(--tx-font-display);
    font-size: 36px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.3;
    color: var(--tx-white);
    margin: 0;
    padding-left: 24px;
    border-left: 3px solid var(--tx-rose);
}

.tx-brand-story-text p {
    color: rgba(254,253,251,0.6);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.tx-brand-story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.tx-brand-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--tx-radius-md);
}

.tx-brand-stat-number {
    font-family: var(--tx-font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--tx-rose);
    display: block;
}

.tx-brand-stat-label {
    font-size: 12px;
    color: rgba(254,253,251,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 768px) {
    .tx-brand-story {
        padding: 60px 0;
    }

    .tx-brand-story-grid {
        grid-template-columns: 1fr;
    }

    .tx-brand-story-quote blockquote {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .tx-brand-story-quote blockquote {
        font-size: 24px;
    }

    .tx-brand-stat-number {
        font-size: 22px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   G) INSTAGRAM
   ═══════════════════════════════════════════════════════════════ */

.tx-instagram {
    padding: 80px 0;
    text-align: center;
}

.tx-instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.tx-instagram-placeholder {
    aspect-ratio: 1;
    background: var(--tx-cream);
    border-radius: var(--tx-radius-md);
    position: relative;
}

/* Instagram placeholder gradient variants */
.tx-insta-1 { background: linear-gradient(135deg, #1a0a0f 0%, #c8a0a8 100%); }
.tx-insta-2 { background: linear-gradient(135deg, #0f0a14 0%, #8b5e6b 100%); }
.tx-insta-3 { background: linear-gradient(135deg, #2d1620 0%, #d9b3bf 100%); }
.tx-insta-4 { background: linear-gradient(135deg, #1c0e18 0%, #a0747f 100%); }
.tx-insta-5 { background: linear-gradient(135deg, #3d1d2d 0%, #e6c4cc 100%); }
.tx-insta-6 { background: linear-gradient(135deg, #0d0209 0%, #7a4d5a 100%); }

@media (max-width: 768px) {
    .tx-instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .tx-instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ═══════════════════════════════════════════════════════════════
   H) NEWSLETTER
   ═══════════════════════════════════════════════════════════════ */

.tx-newsletter {
    background: var(--tx-cream);
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--tx-sand);
}

.tx-newsletter-content {
    max-width: 520px;
    margin: 0 auto;
}

.tx-newsletter-form {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.tx-newsletter-form input[type="email"] {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--tx-sand);
    border-radius: var(--tx-radius-pill);
    font-family: var(--tx-font-body);
    font-size: 14px;
    background: var(--tx-white);
    color: var(--tx-charcoal);
}

.tx-newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--tx-rose);
    box-shadow: 0 0 0 3px var(--tx-rose-glow);
}

.tx-newsletter-form button {
    padding: 14px 28px;
    background: var(--tx-rose);
    color: #fff;
    border: none;
    border-radius: var(--tx-radius-pill);
    font-family: var(--tx-font-body);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.tx-newsletter-form button:hover {
    background: var(--tx-rose-dark);
}

.tx-newsletter-trust {
    font-size: 12px;
    color: var(--tx-taupe);
    margin-top: 12px;
}

@media (max-width: 480px) {
    .tx-newsletter-form {
        flex-direction: column;
    }
}


/* ═══════════════════════════════════════════════════════════════
   H2) FBT BUNDLE SYSTEM (Frequently Bought Together)
   ═══════════════════════════════════════════════════════════════ */

.tx-bundle {
    max-width: 1100px;
    margin: 60px auto;
    padding: 40px;
    background: var(--tx-cream);
    border: 1px solid var(--tx-sand);
    border-radius: var(--tx-radius-lg);
    box-shadow: 0 8px 30px rgba(13, 11, 14, 0.05);
}

.tx-bundle__title {
    font-family: var(--tx-serif);
    font-size: 32px;
    font-weight: 600;
    color: var(--tx-deep);
    text-align: center;
    margin: 0 0 32px;
    letter-spacing: -0.5px;
}

.tx-bundle__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.tx-bundle__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    padding: 16px;
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: var(--tx-radius-md);
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}

.tx-bundle__item:has(input:checked) {
    border-color: var(--tx-rose);
    box-shadow: 0 4px 16px rgba(196, 114, 127, 0.18);
}

.tx-bundle__item--main {
    cursor: default;
    background: linear-gradient(180deg, #ffffff 0%, rgba(196, 114, 127, 0.04) 100%);
}

.tx-bundle__checkbox {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    accent-color: var(--tx-rose);
    cursor: pointer;
}

.tx-bundle__item--main .tx-bundle__checkbox {
    cursor: not-allowed;
    opacity: 0.6;
}

.tx-bundle__item-img {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tx-cream);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.tx-bundle__item-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tx-bundle__item-info {
    text-align: center;
    width: 100%;
}

.tx-bundle__item-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--tx-rose);
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    margin-bottom: 6px;
}

.tx-bundle__item-name {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--tx-deep);
    line-height: 1.4;
    margin-bottom: 6px;
    min-height: 36px;
}

.tx-bundle__item-price {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--tx-rose);
}

.tx-bundle__item-price .woocommerce-Price-amount {
    color: inherit;
}

.tx-bundle__plus {
    font-family: var(--tx-serif);
    font-size: 32px;
    font-weight: 300;
    color: var(--tx-rose);
    user-select: none;
    padding: 0 4px;
}

.tx-bundle__summary {
    max-width: 500px;
    margin: 0 auto;
    padding: 24px 28px;
    background: #ffffff;
    border-radius: var(--tx-radius-md);
    box-shadow: 0 2px 12px rgba(13, 11, 14, 0.06);
}

.tx-bundle__totals {
    margin-bottom: 20px;
}

.tx-bundle__subtotal-row,
.tx-bundle__discount-row,
.tx-bundle__final-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
    color: var(--tx-deep);
}

.tx-bundle__subtotal-value.tx-bundle__strike {
    text-decoration: line-through;
    opacity: 0.6;
}

.tx-bundle__discount-row {
    color: var(--tx-rose);
    font-weight: 500;
}

.tx-bundle__final-row {
    font-size: 18px;
    font-weight: 700;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid var(--tx-sand);
    color: var(--tx-deep);
}

.tx-bundle__final-value {
    color: var(--tx-rose);
}

.tx-bundle__add-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tx-bundle__add-btn--disabled,
.tx-bundle__add-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.tx-bundle__add-btn--loading {
    pointer-events: none;
    opacity: 0.7;
}

.tx-bundle__add-btn--success {
    background: #2d6a4f !important;
    border-color: #2d6a4f !important;
}

/* Responsive */
@media (max-width: 900px) {
    .tx-bundle {
        padding: 28px 20px;
        margin: 40px 16px;
    }

    .tx-bundle__title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .tx-bundle__items {
        flex-direction: column;
        gap: 8px;
    }

    .tx-bundle__item {
        width: 100%;
        max-width: 320px;
        flex-direction: row;
        text-align: left;
    }

    .tx-bundle__item-img {
        width: 80px;
        height: 80px;
        margin-bottom: 0;
        margin-right: 14px;
        flex-shrink: 0;
    }

    .tx-bundle__item-info {
        text-align: left;
        flex: 1;
    }

    .tx-bundle__item-name {
        min-height: auto;
    }

    .tx-bundle__plus {
        transform: rotate(90deg);
        font-size: 24px;
        padding: 2px 0;
    }

    .tx-bundle__summary {
        padding: 20px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   I) RECENTLY VIEWED
   ═══════════════════════════════════════════════════════════════ */

.tx-recently-viewed-section {
    padding: 60px 0;
}

.tx-recently-viewed {
    text-align: center;
}

.tx-recently-viewed__title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--tx-serif);
    color: var(--tx-deep);
    letter-spacing: -0.5px;
}

.tx-recently-viewed__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.tx-recently-viewed__item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.tx-recently-viewed__item:hover {
    transform: translateY(-4px);
    opacity: 0.8;
}

.tx-recently-viewed__img {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--tx-radius-md);
    background: var(--tx-cream);
    margin-bottom: 8px;
}

.tx-recently-viewed__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.tx-recently-viewed__name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.4;
    min-height: 28px;
}

.tx-recently-viewed__price {
    font-size: 13px;
    color: var(--tx-rose);
    font-weight: 600;
}

@media (max-width: 768px) {
    .tx-recently-viewed__grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }

    .tx-recently-viewed__title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .tx-recently-viewed__grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 8px;
    }

    .tx-recently-viewed__title {
        font-size: 20px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   J) FOOTER
   ═══════════════════════════════════════════════════════════════ */

.tx-footer {
    background: var(--tx-deep) !important;
    color: rgba(254,253,251,0.55);
    padding: 0;
}

.tx-footer-top {
    padding: 60px 0 40px;
}

.tx-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.tx-footer-logo {
    font-family: var(--tx-font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--tx-white);
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.tx-footer-tagline {
    font-family: var(--tx-font-body);
    font-size: 12px;
    color: var(--tx-rose);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.tx-footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(254,253,251,0.5);
}

.tx-footer-social {
    display: flex;
    gap: 12px;
}

.tx-footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5) !important;
    transition: all 0.3s;
}

.tx-footer-social a:hover {
    background: var(--tx-rose);
    color: #fff !important;
}

.tx-footer-social a svg {
    fill: currentColor;
    width: 16px;
    height: 16px;
}

.tx-footer-heading {
    font-family: var(--tx-font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--tx-white) !important;
    margin-bottom: 20px;
}

.tx-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tx-footer-links li {
    margin-bottom: 10px;
}

.tx-footer-links a {
    font-size: 14px;
    color: rgba(254,253,251,0.5) !important;
    text-decoration: none;
    transition: color 0.3s;
}

.tx-footer-links a:hover {
    color: var(--tx-rose) !important;
}

.tx-footer-newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.tx-footer-newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--tx-radius-pill);
    color: var(--tx-white);
    font-size: 13px;
}

.tx-footer-newsletter-form input:focus {
    outline: none;
    border-color: var(--tx-rose);
}

.tx-footer-newsletter-form button {
    padding: 12px 20px;
    background: var(--tx-rose);
    color: #fff;
    border: none;
    border-radius: var(--tx-radius-pill);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.tx-footer-newsletter-form button:hover {
    background: var(--tx-rose-dark);
}

.tx-footer-payments {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    opacity: 0.5;
}

.tx-footer-payments img {
    height: 24px;
}

.tx-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(254,253,251,0.35);
}

@media (max-width: 768px) {
    .tx-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tx-footer-grid {
        grid-template-columns: 1fr;
    }
}


/* ═══════════════════════════════════════════════════════════════
   K) PAGE HERO
   ═══════════════════════════════════════════════════════════════ */

.tx-page-hero {
    background: linear-gradient(135deg, var(--tx-deep) 0%, var(--tx-midnight) 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.tx-page-hero-inner {
    max-width: 640px;
    margin: 0 auto;
}

.tx-page-hero-overline {
    display: inline-block;
    font-family: var(--tx-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--tx-rose);
    margin-bottom: 12px;
}

.tx-page-hero-title {
    font-family: var(--tx-font-display);
    font-size: 48px;
    font-weight: 300;
    color: var(--tx-white);
    margin-bottom: 12px;
}

.tx-page-hero-subtitle {
    font-size: 16px;
    color: rgba(254,253,251,0.55);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .tx-page-hero-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .tx-page-hero {
        padding: 60px 0 40px;
    }

    .tx-page-hero-title {
        font-size: 28px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   L) ABOUT PAGE
   ═══════════════════════════════════════════════════════════════ */

.tx-about-page {
    background: var(--tx-white);
}

.tx-about-story {
    padding: 80px 0;
}

.tx-about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tx-about-heading {
    font-family: var(--tx-font-display);
    font-size: 36px;
    font-weight: 500;
    color: var(--tx-charcoal);
    margin-bottom: 16px;
    line-height: 1.2;
}

.tx-about-stat-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--tx-cream);
    border: 1px solid var(--tx-sand);
    border-radius: var(--tx-radius-lg);
}

.tx-about-stat-card .tx-stat-number {
    color: var(--tx-rose);
}

.tx-about-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

.tx-about-mv-card {
    padding: 40px 32px;
    background: var(--tx-cream);
    border: 1px solid var(--tx-sand);
    border-radius: var(--tx-radius-lg);
}

.tx-about-mv-card h3 {
    font-family: var(--tx-font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--tx-charcoal);
    margin-bottom: 12px;
}

.tx-about-mv-card p {
    color: var(--tx-taupe);
    font-size: 15px;
    line-height: 1.7;
}

.tx-about-values {
    padding: 80px 0;
    background: var(--tx-cream);
}

.tx-about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.tx-about-value-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--tx-white);
    border: 1px solid var(--tx-sand);
    border-radius: var(--tx-radius-lg);
    transition: all 0.3s var(--tx-ease);
}

.tx-about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tx-shadow-lg);
}

.tx-about-value-card .tx-category-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.tx-about-value-card h4 {
    font-family: var(--tx-font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--tx-charcoal);
    margin-bottom: 8px;
}

.tx-about-value-card p {
    font-size: 14px;
    color: var(--tx-taupe);
    line-height: 1.6;
}

.tx-about-trust-strip {
    background: var(--tx-deep);
    padding: 40px 0;
}

.tx-about-trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.tx-about-trust-items .tx-trust-bar-item {
    color: rgba(254,253,251,0.6);
}

.tx-about-trust-items .tx-trust-bar-text {
    color: rgba(254,253,251,0.6);
}

.tx-about-cta {
    padding: 80px 0;
    text-align: center;
    background: var(--tx-white);
}

@media (max-width: 768px) {
    .tx-about-story-grid {
        grid-template-columns: 1fr;
    }

    .tx-about-heading {
        font-size: 28px;
    }

    .tx-about-mv-grid {
        grid-template-columns: 1fr;
    }

    .tx-about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tx-about-trust-items {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .tx-about-story {
        padding: 40px 0;
    }

    .tx-about-values-grid {
        grid-template-columns: 1fr;
    }

    .tx-about-mv-card {
        padding: 24px 20px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   L2) CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */

.tx-contact-main {
    padding: 60px 0;
}

.tx-contact-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
}

.tx-contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tx-info-card {
    padding: 24px;
    background: var(--tx-cream);
    border: 1px solid var(--tx-sand);
    border-radius: var(--tx-radius-lg);
}

.tx-info-card h4 {
    font-family: var(--tx-font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--tx-charcoal);
    margin-bottom: 12px;
}

.tx-info-card p {
    font-size: 14px;
    color: var(--tx-taupe);
    line-height: 1.6;
    margin-bottom: 8px;
}

.tx-info-card a {
    color: var(--tx-rose);
    font-weight: 500;
}

.tx-info-card a:hover {
    color: var(--tx-rose-dark);
}

.tx-info-card .tx-trust-bar-icon,
.tx-info-card svg {
    color: var(--tx-rose);
    fill: var(--tx-rose);
}

.tx-contact-form-card {
    padding: 40px;
    background: var(--tx-white);
    border: 1px solid var(--tx-sand);
    border-radius: var(--tx-radius-lg);
    box-shadow: var(--tx-shadow-sm);
}

.tx-contact-form-card h3 {
    font-family: var(--tx-font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--tx-charcoal);
    margin-bottom: 24px;
}

.tx-social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.tx-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--tx-cream);
    border: 1px solid var(--tx-sand);
    color: var(--tx-charcoal);
    transition: all 0.3s var(--tx-ease);
    text-decoration: none;
}

.tx-social-link:hover {
    background: var(--tx-rose);
    border-color: var(--tx-rose);
    color: #fff;
}

.tx-social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.tx-map-section {
    padding: 0 0 60px;
}

.tx-map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: var(--tx-radius-lg);
}

.tx-faq-section {
    padding: 60px 0;
    background: var(--tx-cream);
}

.tx-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.tx-faq-item {
    padding: 24px;
    background: var(--tx-white);
    border: 1px solid var(--tx-sand);
    border-radius: var(--tx-radius-lg);
}

.tx-faq-item h4 {
    font-family: var(--tx-font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--tx-charcoal);
    margin-bottom: 8px;
}

.tx-faq-item p {
    font-size: 14px;
    color: var(--tx-taupe);
    line-height: 1.6;
    margin-bottom: 0;
}

.tx-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.tx-form-group {
    margin-bottom: 16px;
}

.tx-form-group label {
    font-family: var(--tx-font-body);
    font-weight: 500;
    font-size: 14px;
    color: var(--tx-charcoal);
    margin-bottom: 6px;
    display: block;
}

.tx-form-group input,
.tx-form-group textarea,
.tx-form-group select {
    width: 100%;
}

.tx-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--tx-rose);
    color: var(--tx-white);
    border: none;
    border-radius: var(--tx-radius-pill);
    font-family: var(--tx-font-body);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--tx-duration) var(--tx-ease);
    gap: 8px;
}

.tx-submit-btn:hover {
    background: var(--tx-rose-dark);
    transform: translateY(-1px);
    box-shadow: var(--tx-shadow-rose);
}

@media (max-width: 768px) {
    .tx-contact-layout {
        grid-template-columns: 1fr;
    }

    .tx-faq-grid {
        grid-template-columns: 1fr;
    }

    .tx-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tx-contact-form-card {
        padding: 24px;
    }

    .tx-contact-main {
        padding: 40px 0;
    }
}
