/* ═══════════════════════════════════════════════
   RENTA CAR — Global Styles
   Prefix: rnt- (classes), --rnt- (variables)
   ═══════════════════════════════════════════════ */

/* ── CSS Custom Properties (R1 — zero hardcoded colors) ── */
:root {
    /* Brand */
    --rnt-primary: #1089ff;
    --rnt-primary-rgb: 16, 137, 255;
    --rnt-primary-dark: #0a6dd6;
    --rnt-accent: #01d28e;
    --rnt-accent-rgb: 1, 210, 142;
    --rnt-accent-dark: #00b87a;

    /* Dark theme */
    --rnt-dark: #000000;
    --rnt-dark-alt: #111111;
    --rnt-card: #1a1a1a;
    --rnt-panel-bg: #0d0d0d;

    /* Light theme */
    --rnt-light: #f8f9fa;
    --rnt-light-alt: #ffffff;
    --rnt-bg-body: #ffffff;

    /* Text */
    --rnt-text-primary: #1a1a2e;
    --rnt-text-secondary: #6c757d;
    --rnt-text-white: #ffffff;
    --rnt-text-muted: rgba(0, 0, 0, 0.5);

    /* Borders */
    --rnt-border: rgba(0, 0, 0, 0.1);
    --rnt-border-light: rgba(0, 0, 0, 0.05);

    /* Status */
    --rnt-success: #01d28e;
    --rnt-error: #dc3545;
    --rnt-warning: #ffc107;

    /* Typography */
    --rnt-font-family: 'Poppins', sans-serif;
    --rnt-font-size-base: 16px;

    /* Layout */
    --rnt-container-max: 1200px;
    --rnt-navbar-height: 80px;
    --rnt-radius: 8px;
    --rnt-radius-lg: 16px;

    /* Shadows */
    --rnt-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --rnt-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --rnt-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --rnt-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.16);
    --rnt-shadow-primary: 0 8px 24px rgba(16, 137, 255, 0.3);
    --rnt-shadow-accent: 0 8px 24px rgba(1, 210, 142, 0.3);

    /* Transitions */
    --rnt-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --rnt-transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --rnt-transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
}

::selection {
    background: rgba(var(--rnt-primary-rgb), 0.2);
    color: var(--rnt-text-primary);
}

body {
    font-family: var(--rnt-font-family);
    font-size: var(--rnt-font-size-base);
    color: var(--rnt-text-primary);
    background-color: var(--rnt-bg-body);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--rnt-primary-dark);
}

/* ── Container ── */
.rnt-container {
    max-width: var(--rnt-container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}


/* ═══════════════════════════════════════════════
   PNRR Banner (R24)
   ═══════════════════════════════════════════════ */
.rnt-pnrr-top-bar {
    background: #FFFFFF !important;
    padding: 8px 0;
    text-align: center;
}


/* ═══════════════════════════════════════════════
   NAVBAR (R6 — glassmorphism on scroll)
   ═══════════════════════════════════════════════ */
.rnt-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
    padding: 0;
}

.rnt-navbar.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 20px rgba(0, 0, 0, 0.06);
}

.rnt-navbar__inner {
    max-width: var(--rnt-container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--rnt-navbar-height);
}

/* Brand */
.rnt-navbar__brand {
    font-weight: 800;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--rnt-text-white);
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--rnt-transition);
}

.rnt-navbar__brand span {
    color: var(--rnt-accent);
}

.rnt-navbar.is-scrolled .rnt-navbar__brand {
    color: var(--rnt-text-primary);
}

/* Menu */
.rnt-navbar__menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

.rnt-navbar__link {
    font-size: 14px;
    padding: 0.9rem 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-decoration: none;
    transition: var(--rnt-transition);
    position: relative;
    letter-spacing: 0.3px;
}

.rnt-navbar__link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--rnt-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rnt-navbar__link:hover::after,
.rnt-navbar__link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.rnt-navbar__link:hover,
.rnt-navbar__link.active {
    color: var(--rnt-text-white);
}

.rnt-navbar.is-scrolled .rnt-navbar__link {
    color: var(--rnt-text-secondary);
}

.rnt-navbar.is-scrolled .rnt-navbar__link:hover,
.rnt-navbar.is-scrolled .rnt-navbar__link.active {
    color: var(--rnt-primary);
}

.rnt-navbar.is-scrolled .rnt-navbar__link::after {
    background: var(--rnt-primary);
}

/* Burger */
.rnt-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.rnt-burger__line {
    width: 24px;
    height: 2px;
    background: var(--rnt-text-white);
    transition: var(--rnt-transition);
    display: block;
}

.rnt-navbar.is-scrolled .rnt-burger__line {
    background: var(--rnt-text-primary);
}

.rnt-burger.is-open .rnt-burger__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.rnt-burger.is-open .rnt-burger__line:nth-child(2) {
    opacity: 0;
}

.rnt-burger.is-open .rnt-burger__line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.rnt-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rnt-mobile-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.rnt-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.rnt-mobile-nav li {
    margin-bottom: 24px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.rnt-mobile-overlay.is-open .rnt-mobile-nav li {
    transform: translateY(0);
    opacity: 1;
}

.rnt-mobile-overlay.is-open .rnt-mobile-nav li:nth-child(1) { transition-delay: 0.1s; }
.rnt-mobile-overlay.is-open .rnt-mobile-nav li:nth-child(2) { transition-delay: 0.15s; }
.rnt-mobile-overlay.is-open .rnt-mobile-nav li:nth-child(3) { transition-delay: 0.2s; }
.rnt-mobile-overlay.is-open .rnt-mobile-nav li:nth-child(4) { transition-delay: 0.25s; }
.rnt-mobile-overlay.is-open .rnt-mobile-nav li:nth-child(5) { transition-delay: 0.3s; }
.rnt-mobile-overlay.is-open .rnt-mobile-nav li:nth-child(6) { transition-delay: 0.35s; }
.rnt-mobile-overlay.is-open .rnt-mobile-nav li:nth-child(7) { transition-delay: 0.4s; }

.rnt-mobile-nav a {
    color: var(--rnt-text-white);
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--rnt-transition);
}

.rnt-mobile-nav a:hover {
    color: var(--rnt-accent);
}

@media (max-width: 991px) {
    .rnt-navbar__menu {
        display: none;
    }
    .rnt-burger {
        display: flex;
    }
    .rnt-navbar {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}


/* ═══════════════════════════════════════════════
   HERO SECTION (shared across pages)
   ═══════════════════════════════════════════════ */
.rnt-hero {
    width: 100%;
    height: 600px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    overflow: hidden;
}

.rnt-hero--full {
    height: 100vh;
    min-height: 700px;
    max-height: 1000px;
}

.rnt-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(16, 137, 255, 0.15) 100%
    );
}

/* --- Full hero (homepage): centered content --- */
.rnt-hero--full .rnt-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* --- Sub-page hero: bottom-left content --- */
.rnt-hero__inner {
    max-width: var(--rnt-container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.rnt-hero__content {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

.rnt-hero__title {
    font-size: 52px;
    color: var(--rnt-text-white);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.rnt-hero__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 600px;
}

.rnt-hero__breadcrumbs {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.rnt-hero__breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--rnt-transition);
}

.rnt-hero__breadcrumbs a:hover {
    color: var(--rnt-text-white);
}

.rnt-hero__breadcrumbs span {
    color: var(--rnt-accent);
}

.rnt-hero__breadcrumbs i {
    font-style: normal;
    margin: 0 6px;
    opacity: 0.4;
}

.rnt-hero__bread {
    font-size: 48px;
    color: var(--rnt-text-white);
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
}

@media (max-width: 991px) {
    .rnt-hero { height: 400px; }
    .rnt-hero--full { height: 85vh; min-height: 500px; }
    .rnt-hero__title { font-size: 34px; }
    .rnt-hero__bread { font-size: 32px; }
}

@media (max-width: 575px) {
    .rnt-hero__title { font-size: 28px; }
    .rnt-hero__bread { font-size: 26px; }
}


/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.rnt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--rnt-font-family);
    border-radius: var(--rnt-radius);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-align: center;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.rnt-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rnt-btn:hover::before {
    opacity: 1;
}

.rnt-btn:active {
    transform: scale(0.97);
}

.rnt-btn--primary {
    background: var(--rnt-primary);
    color: var(--rnt-text-white);
    border-color: var(--rnt-primary);
    box-shadow: 0 4px 12px rgba(16, 137, 255, 0.25);
}

.rnt-btn--primary:hover {
    background: var(--rnt-primary-dark);
    border-color: var(--rnt-primary-dark);
    color: var(--rnt-text-white);
    box-shadow: var(--rnt-shadow-primary);
    transform: translateY(-2px);
}

.rnt-btn--secondary {
    background: var(--rnt-accent);
    color: var(--rnt-text-white);
    border-color: var(--rnt-accent);
    box-shadow: 0 4px 12px rgba(1, 210, 142, 0.25);
}

.rnt-btn--secondary:hover {
    background: var(--rnt-accent-dark);
    border-color: var(--rnt-accent-dark);
    color: var(--rnt-text-white);
    box-shadow: var(--rnt-shadow-accent);
    transform: translateY(-2px);
}

.rnt-btn--outline {
    background: transparent;
    color: var(--rnt-primary);
    border-color: var(--rnt-primary);
}

.rnt-btn--outline:hover {
    background: var(--rnt-primary);
    color: var(--rnt-text-white);
    box-shadow: var(--rnt-shadow-primary);
    transform: translateY(-2px);
}

.rnt-btn--sm {
    padding: 9px 20px;
    font-size: 13px;
}

.rnt-btn--lg {
    padding: 16px 40px;
    font-size: 16px;
}

.rnt-btn--full {
    width: 100%;
    display: flex;
}


/* ═══════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════ */
.rnt-section {
    padding: 100px 0;
}

.rnt-section--light {
    background: var(--rnt-light);
}

.rnt-section__heading {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: var(--rnt-text-primary);
    letter-spacing: -0.5px;
}

.rnt-section__subheading {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--rnt-primary);
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
}

/* Decorative line under subheading */
.rnt-section__subheading::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--rnt-primary), var(--rnt-accent));
    margin: 12px auto 0;
    border-radius: 2px;
}


/* ═══════════════════════════════════════════════
   FOOTER (R23 — nuclear anti-Astra protection)
   ═══════════════════════════════════════════════ */
.rnt-footer,
.rnt-footer *,
.rnt-footer *::before,
.rnt-footer *::after {
    box-sizing: border-box !important;
}

.rnt-footer {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    display: block !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    z-index: 10 !important;
    color: rgba(255, 255, 255, 0.8);
}

.rnt-footer__inner {
    width: 100% !important;
    display: block !important;
}

.rnt-footer__grid {
    display: grid !important;
    width: 100% !important;
}

.rnt-footer__col {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}

.rnt-footer__logo {
    font-weight: 800;
    font-size: 24px;
    text-transform: uppercase;
    color: var(--rnt-text-white);
    text-decoration: none;
    margin-bottom: 16px;
    display: inline-block;
    letter-spacing: 1px;
}

.rnt-footer__logo span {
    color: var(--rnt-accent);
}

.rnt-footer__desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.rnt-footer__heading {
    color: var(--rnt-text-white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.rnt-footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--rnt-accent);
}

@media (max-width: 991px) {
    .rnt-footer__heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.rnt-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rnt-footer__list li {
    margin-bottom: 12px;
}

.rnt-footer__list a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    text-decoration: none;
    transition: var(--rnt-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.rnt-footer__list a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--rnt-accent);
    transition: width 0.3s ease;
}

.rnt-footer__list a:hover {
    color: var(--rnt-text-white);
}

.rnt-footer__list a:hover::before {
    width: 16px;
}

.rnt-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.rnt-footer__social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--rnt-transition);
}

.rnt-footer__social-link:hover {
    background: var(--rnt-accent);
    border-color: var(--rnt-accent);
    color: var(--rnt-text-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(1, 210, 142, 0.3);
}

.rnt-footer__social-link svg {
    width: 18px !important;
    height: 18px !important;
    max-width: none !important;
    flex-shrink: 0;
}

/* Badges (R7 — no color filters) */
.rnt-footer__badges {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.rnt-footer__badge-img {
    display: block;
    width: auto;
    height: 36px;
    object-fit: contain;
}

.rnt-footer__badge-img.is-broken { display: none; }
.rnt-footer__badge-img.is-broken + .rnt-footer__badge-fallback {
    display: inline-block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
}

.rnt-footer__badge-fallback { display: none; }

.rnt-footer__bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.rnt-footer__bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    margin: 0;
    letter-spacing: 0.3px;
}

@media (max-width: 991px) {
    .rnt-footer__badges { justify-content: center; }
    .rnt-footer__social { justify-content: center; }
}


/* ═══════════════════════════════════════════════
   ADD-TO-CART MODAL (R28)
   ═══════════════════════════════════════════════ */
.rnt-atc-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rnt-atc-modal--open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.rnt-atc-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.rnt-atc-modal__dialog {
    position: relative;
    background: var(--rnt-light-alt);
    border-radius: var(--rnt-radius-lg);
    padding: 48px 40px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: var(--rnt-shadow-xl);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rnt-atc-modal--open .rnt-atc-modal__dialog {
    transform: scale(1);
}

.rnt-atc-modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    color: var(--rnt-text-secondary);
    cursor: pointer;
    line-height: 1;
    transition: var(--rnt-transition);
}

.rnt-atc-modal__close:hover {
    color: var(--rnt-text-primary);
    transform: rotate(90deg);
}

.rnt-atc-modal__icon {
    margin-bottom: 20px;
}

.rnt-atc-modal__icon svg {
    width: 56px !important;
    height: 56px !important;
    max-width: none !important;
}

.rnt-atc-modal__dialog h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--rnt-text-primary);
    font-weight: 700;
}

.rnt-atc-modal__dialog p {
    font-size: 15px;
    color: var(--rnt-text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

.rnt-atc-modal__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.rnt-atc-modal__actions .rnt-btn {
    flex: 1;
    min-width: 140px;
}

@media (max-width: 480px) {
    .rnt-atc-modal__actions {
        flex-direction: column;
    }
    .rnt-atc-modal__actions .rnt-btn {
        width: 100%;
    }
}


/* ═══════════════════════════════════════════════
   WOOCOMMERCE NOTICES (R22)
   ═══════════════════════════════════════════════ */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background-color: var(--rnt-light-alt) !important;
    color: var(--rnt-text-primary) !important;
    border: 1px solid var(--rnt-border) !important;
    border-left: 4px solid var(--rnt-primary) !important;
    border-radius: var(--rnt-radius) !important;
    padding: 16px 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    font-family: var(--rnt-font-family) !important;
    box-shadow: var(--rnt-shadow-sm) !important;
}

.woocommerce-error {
    border-left-color: var(--rnt-error) !important;
}

.woocommerce-message .button {
    order: 3 !important;
    margin-left: auto !important;
    background: rgba(var(--rnt-primary-rgb), 0.08) !important;
    border: 1px solid rgba(var(--rnt-primary-rgb), 0.2) !important;
    color: var(--rnt-primary) !important;
    padding: 8px 18px !important;
    border-radius: var(--rnt-radius) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: var(--rnt-transition) !important;
}

.woocommerce-message .button:hover {
    background: var(--rnt-primary) !important;
    color: var(--rnt-text-white) !important;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
    position: static !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
}


/* ═══════════════════════════════════════════════
   REVEAL ANIMATIONS (R25)
   ═══════════════════════════════════════════════ */
.rnt-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger delays for grid children */
.rnt-reveal:nth-child(2) { transition-delay: 0.1s; }
.rnt-reveal:nth-child(3) { transition-delay: 0.2s; }
.rnt-reveal:nth-child(4) { transition-delay: 0.3s; }


/* ═══════════════════════════════════════════════
   BACK TO TOP BUTTON
   ═══════════════════════════════════════════════ */
.rnt-back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--rnt-primary);
    color: var(--rnt-text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: var(--rnt-shadow-primary);
}

.rnt-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.rnt-back-to-top:hover {
    background: var(--rnt-primary-dark);
    transform: translateY(-3px);
}

.rnt-back-to-top svg {
    width: 20px !important;
    height: 20px !important;
    max-width: none !important;
}


/* ═══════════════════════════════════════════════
   Astra overrides for consistency
   ═══════════════════════════════════════════════ */
.site-content,
#primary,
.ast-container,
.ast-woocommerce-container,
.content-area,
.site-main {
    background-color: var(--rnt-bg-body) !important;
}
