/**
 * Rainfitt Wiper Finder — Design System Stylesheet
 * 
 * Color Palette:
 * Primary: #0B4F6C (Deep Rain Blue)
 * Accent:  #00C2A8 (Aqua Green CTA)
 * Neutral: #F7F9FB (Soft Background), #0A1A24 (Dark Ink), #5A6B77 (Secondary)
 */

:root {
    --rf-primary: #0B4F6C;
    --rf-primary-hover: #073A50;
    --rf-accent: #00C2A8;
    --rf-accent-hover: #00A38E;
    --rf-bg: #F7F9FB;
    --rf-surface: #FFFFFF;
    --rf-text-primary: #0A1A24;
    --rf-text-secondary: #5A6B77;
    --rf-border: #E4E9EF;
    --rf-success: #16A34A;
    --rf-warning: #F59E0B;
    --rf-error: #DC2626;

    --rf-radius-card: 16px;
    --rf-radius-btn: 10px;
    --rf-radius-input: 10px;
    --rf-radius-pill: 999px;

    --rf-shadow-sm: 0 1px 2px rgba(10, 26, 36, 0.04);
    --rf-shadow-md: 0 4px 16px rgba(10, 26, 36, 0.06);
    --rf-shadow-lg: 0 12px 40px rgba(10, 26, 36, 0.10);
    --rf-shadow-glow: 0 0 0 4px rgba(0, 194, 168, 0.18);
    --rf-transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.rainfitt-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--rf-text-primary);
    background: var(--rf-bg);
    border-radius: var(--rf-radius-card);
    box-sizing: border-box;
}

.rainfitt-container * {
    box-sizing: border-box;
}

/* Header */
.rf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rf-border);
    margin-bottom: 32px;
}

.rf-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rf-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 194, 168, 0.12);
    border-radius: 12px;
}

.rf-brand-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--rf-primary);
    letter-spacing: -0.5px;
}

.rf-cart-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--rf-surface);
    border: 1px solid var(--rf-border);
    border-radius: var(--rf-radius-btn);
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--rf-text-primary);
    transition: var(--rf-transition);
}

.rf-cart-trigger:hover {
    border-color: var(--rf-accent);
    box-shadow: var(--rf-shadow-sm);
}

.rf-cart-count {
    background: var(--rf-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: var(--rf-radius-pill);
}

/* Hero Section */
.rf-hero {
    text-align: center;
    padding: 30px 10px 48px;
}

.rf-hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(11, 79, 108, 0.08);
    color: var(--rf-primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--rf-radius-pill);
    margin-bottom: 16px;
}

.rf-hero-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--rf-primary);
    margin: 0 0 14px;
    letter-spacing: -1px;
}

/* Trigger Card (Shown by default, click to open search) */
.rf-trigger-card {
    background: #FFFFFF;
    border: 1.5px solid var(--rf-border);
    border-radius: var(--rf-radius-card);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--rf-shadow-sm);
    cursor: pointer;
    transition: var(--rf-transition);
    max-width: 920px;
    margin: 0 auto 20px;
    gap: 16px;
}

.rf-trigger-card:hover {
    border-color: var(--rf-accent);
    box-shadow: var(--rf-shadow-md);
    transform: translateY(-2px);
}

.rf-trigger-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rf-trigger-badge-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 194, 168, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rf-accent-hover);
    flex-shrink: 0;
}

.rf-trigger-info {
    text-align: left;
}

.rf-trigger-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(11, 79, 108, 0.08);
    color: var(--rf-primary);
    padding: 2px 8px;
    border-radius: var(--rf-radius-pill);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.rf-trigger-heading {
    margin: 0 0 2px;
    font-size: 18px;
    font-weight: 700;
    color: var(--rf-primary);
}

.rf-trigger-sub {
    margin: 0;
    font-size: 13px;
    color: var(--rf-text-secondary);
}

.rf-trigger-btn {
    background: var(--rf-accent);
    color: #0A1A24;
    border: none;
    border-radius: var(--rf-radius-btn);
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--rf-transition);
    white-space: nowrap;
}

.rf-trigger-btn:hover {
    background: var(--rf-accent-hover);
}

.rf-chevron-icon {
    transition: transform 250ms ease;
}

.rf-trigger-card.open .rf-chevron-icon {
    transform: rotate(180deg);
}

.rf-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rf-border);
}

.rf-header-title-wrap {
    text-align: left;
}

.rf-header-title-wrap h4 {
    margin: 4px 0 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--rf-primary);
    letter-spacing: -0.3px;
}

/* Search Card (Permanently Visible) */
.rf-search-card {
    background: var(--rf-surface);
    border: 1.5px solid var(--rf-border);
    border-radius: var(--rf-radius-card);
    box-shadow: var(--rf-shadow-md);
    padding: 28px;
    max-width: 920px;
    margin: 0 auto 30px;
}

.rf-search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 140px auto;
    gap: 16px;
    align-items: flex-end;
}

.rf-field-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
}

.rf-field-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--rf-text-primary);
    margin-bottom: 8px;
}

.rf-field-group input,
.rf-field-group select {
    width: 100%;
    height: 48px;
    border: 1px solid var(--rf-border);
    border-radius: var(--rf-radius-input);
    padding: 10px 14px;
    font-size: 15px;
    background: var(--rf-bg);
    color: var(--rf-text-primary);
    transition: var(--rf-transition);
    outline: none;
}

.rf-field-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2212%22%20height%3D%228%22%20viewBox%3D%220%200%2012%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1%201.5L6%206.5L11%201.5%22%20stroke%3D%22%235A6B77%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px 8px;
    padding-right: 36px;
    cursor: pointer;
}

.rf-field-group select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #F1F5F9;
}

.rf-field-group input:focus,
.rf-field-group select:focus {
    background: #fff;
    border-color: var(--rf-accent);
    box-shadow: var(--rf-shadow-glow);
}

.rf-autocomplete-wrap {
    position: relative;
}

.rf-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--rf-border);
    border-radius: var(--rf-radius-input);
    box-shadow: var(--rf-shadow-lg);
    max-height: 220px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    margin-top: 4px;
}

.rf-dropdown-item {
    padding: 10px 14px;
    font-size: 14px;
    cursor: pointer;
    transition: background 120ms ease;
}

.rf-dropdown-item:hover,
.rf-dropdown-item.active {
    background: #E0F2FE;
    color: var(--rf-primary);
}

.rf-search-btn {
    height: 48px;
    background: var(--rf-accent);
    color: #0A1A24;
    border: none;
    border-radius: var(--rf-radius-btn);
    font-size: 15px;
    font-weight: 700;
    padding: 0 28px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--rf-transition);
    white-space: nowrap;
}

.rf-search-btn:hover {
    background: var(--rf-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--rf-shadow-md);
}

.rf-search-btn.loading .rf-btn-text {
    visibility: hidden;
}

.rf-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(10, 26, 36, 0.2);
    border-top-color: #0A1A24;
    border-radius: 50%;
    animation: rf-spin 0.6s linear infinite;
    position: absolute;
}

.rf-search-btn.loading .rf-spinner {
    display: block;
}

@keyframes rf-spin {
    to { transform: rotate(360deg); }
}

/* Vehicle Bar */
.rf-vehicle-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid var(--rf-border);
    border-radius: var(--rf-radius-card);
    padding: 18px 24px;
    margin-bottom: 24px;
    box-shadow: var(--rf-shadow-sm);
}

.rf-vehicle-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rf-vehicle-icon {
    font-size: 28px;
}

.rf-vehicle-bar .rf-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--rf-text-secondary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.rf-vehicle-name {
    margin: 2px 0 0;
    font-size: 22px;
    font-weight: 800;
    color: var(--rf-primary);
}

.rf-change-btn {
    background: transparent;
    border: 1px solid var(--rf-border);
    padding: 8px 16px;
    border-radius: var(--rf-radius-btn);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: var(--rf-text-secondary);
    transition: var(--rf-transition);
}

.rf-change-btn:hover {
    color: var(--rf-primary);
    border-color: var(--rf-primary);
}

/* Sizes Grid */
.rf-sizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.rf-size-card {
    background: #fff;
    border: 1.5px solid var(--rf-border);
    border-radius: var(--rf-radius-card);
    padding: 24px;
    position: relative;
    box-shadow: var(--rf-shadow-sm);
    transition: var(--rf-transition);
}

.rf-size-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rf-shadow-lg);
    border-color: var(--rf-accent);
}

.rf-size-card-side {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.rf-side-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--rf-text-secondary);
    letter-spacing: 0.5px;
}

.rf-size-badge {
    background: rgba(0, 194, 168, 0.12);
    color: #008F7B;
    font-weight: 700;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: var(--rf-radius-pill);
}

.rf-size-display {
    font-size: 48px;
    font-weight: 800;
    color: var(--rf-primary);
    line-height: 1;
    margin-bottom: 12px;
}

.rf-size-display span {
    font-size: 24px;
    font-weight: 600;
    color: var(--rf-text-secondary);
}

.rf-size-meta {
    font-size: 14px;
    color: var(--rf-text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.rf-adapter-pill {
    background: #F1F5F9;
    border: 1px solid var(--rf-border);
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 600;
    color: var(--rf-text-primary);
}

/* Bundle Card */
.rf-bundle-banner {
    background: linear-gradient(135deg, #0B4F6C 0%, #073A50 100%);
    color: #fff;
    border-radius: var(--rf-radius-card);
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    box-shadow: var(--rf-shadow-md);
    flex-wrap: wrap;
    gap: 20px;
}

.rf-bundle-tag {
    display: inline-block;
    background: var(--rf-accent);
    color: #0A1A24;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--rf-radius-pill);
    margin-bottom: 8px;
}

.rf-bundle-text h3 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.rf-bundle-text p {
    margin: 0;
    font-size: 14px;
    color: #E4E9EF;
}

.rf-bundle-action {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rf-bundle-price {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

.rf-bundle-btn {
    background: var(--rf-accent);
    color: #0A1A24;
    border: none;
    padding: 14px 28px;
    border-radius: var(--rf-radius-btn);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--rf-transition);
}

.rf-bundle-btn:hover {
    background: var(--rf-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 194, 168, 0.4);
}

/* Section Header */
.rf-section-wrap {
    margin-bottom: 40px;
}

.rf-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--rf-border);
}

.rf-section-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: var(--rf-primary);
}

.rf-badge-adapter {
    font-size: 12px;
    font-weight: 600;
    background: #E0F2FE;
    color: #0369A1;
    padding: 4px 12px;
    border-radius: var(--rf-radius-pill);
}

/* Product Grid */
.rf-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.rf-prod-card {
    background: #fff;
    border: 1px solid var(--rf-border);
    border-radius: var(--rf-radius-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--rf-shadow-sm);
    transition: var(--rf-transition);
}

.rf-prod-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rf-shadow-lg);
    border-color: #CBD5E1;
}

.rf-prod-img-wrap {
    position: relative;
    height: 180px;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rf-prod-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.rf-prod-card:hover .rf-prod-img-wrap img {
    transform: scale(1.05);
}

.rf-prod-match-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--rf-accent);
    color: #0A1A24;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--rf-radius-pill);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.rf-prod-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rf-prod-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--rf-warning);
    margin-bottom: 6px;
}

.rf-prod-rating span {
    color: var(--rf-text-secondary);
}

.rf-prod-name {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--rf-text-primary);
}

.rf-prod-desc {
    font-size: 13px;
    color: var(--rf-text-secondary);
    margin: 0 0 14px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rf-prod-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #F1F5F9;
}

.rf-prod-price-box {
    display: flex;
    flex-direction: column;
}

.rf-prod-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--rf-primary);
}

.rf-prod-compare {
    font-size: 12px;
    text-decoration: line-through;
    color: var(--rf-text-secondary);
}

.rf-add-btn {
    background: var(--rf-primary);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: var(--rf-radius-btn);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--rf-transition);
}

.rf-add-btn:hover {
    background: var(--rf-primary-hover);
    transform: translateY(-1px);
}

/* Trust Strip */
.rf-trust-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--rf-border);
    border-radius: var(--rf-radius-card);
    margin: 48px 0;
}

.rf-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rf-trust-icon {
    font-size: 22px;
    color: var(--rf-accent);
}

.rf-trust-item strong {
    display: block;
    font-size: 14px;
    color: var(--rf-text-primary);
}

.rf-trust-item span {
    font-size: 12px;
    color: var(--rf-text-secondary);
}

/* How It Works */
.rf-how-it-works {
    text-align: center;
    padding: 20px 0 40px;
}

.rf-section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--rf-primary);
    margin-bottom: 32px;
}

.rf-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.rf-step-card {
    background: #fff;
    border: 1px solid var(--rf-border);
    border-radius: var(--rf-radius-card);
    padding: 30px 24px;
    position: relative;
    box-shadow: var(--rf-shadow-sm);
}

.rf-step-num {
    width: 36px;
    height: 36px;
    background: var(--rf-accent);
    color: #0A1A24;
    border-radius: 50%;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 16px;
}

.rf-step-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--rf-text-primary);
}

.rf-step-card p {
    margin: 0;
    font-size: 14px;
    color: var(--rf-text-secondary);
    line-height: 1.5;
}

/* Skeleton Loading */
.rf-skeleton-wrap {
    margin: 30px 0;
}

.rf-skel-badge {
    height: 48px;
    background: #E2E8F0;
    border-radius: 12px;
    margin-bottom: 24px;
    animation: rf-pulse 1.2s infinite;
}

.rf-skel-sizes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.rf-skel-card {
    height: 140px;
    background: #E2E8F0;
    border-radius: var(--rf-radius-card);
    animation: rf-pulse 1.2s infinite;
}

.rf-skel-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rf-skel-prod {
    height: 280px;
    background: #E2E8F0;
    border-radius: var(--rf-radius-card);
    animation: rf-pulse 1.2s infinite;
}

@keyframes rf-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Toast */
.rf-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #0A1A24;
    color: #fff;
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: var(--rf-shadow-lg);
    font-size: 14px;
    font-weight: 500;
    z-index: 1000;
    display: none;
    animation: rf-slide-up 200ms ease;
}

@keyframes rf-slide-up {
    from { transform: translateY(12px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Cart Drawer */
.rf-cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 26, 36, 0.4);
    backdrop-filter: blur(4px);
    z-index: 9998;
    display: none;
}

.rf-cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    transition: right 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.rf-cart-drawer.open {
    right: 0;
}

.rf-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--rf-border);
}

.rf-drawer-header h3 {
    margin: 0;
    font-size: 18px;
    color: var(--rf-primary);
}

.rf-drawer-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--rf-text-secondary);
}

.rf-drawer-body {
    padding: 20px 24px;
    flex-grow: 1;
    overflow-y: auto;
}

.rf-cart-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #F1F5F9;
    align-items: center;
}

.rf-cart-item img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.rf-cart-item-info {
    flex-grow: 1;
}

.rf-cart-item-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 2px;
}

.rf-cart-item-price {
    font-size: 13px;
    color: var(--rf-text-secondary);
}

.rf-cart-item-qty {
    font-size: 12px;
    background: #F1F5F9;
    padding: 2px 6px;
    border-radius: 4px;
}

.rf-drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--rf-border);
    background: #F8FAFC;
}

.rf-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 700;
}

.rf-checkout-btn {
    display: block;
    text-align: center;
    background: var(--rf-accent);
    color: #0A1A24;
    text-decoration: none;
    padding: 14px;
    border-radius: var(--rf-radius-btn);
    font-weight: 700;
    font-size: 15px;
    transition: var(--rf-transition);
}

.rf-checkout-btn:hover {
    background: var(--rf-accent-hover);
    color: #0A1A24;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .rf-search-form {
        grid-template-columns: 1fr;
    }

    .rf-bundle-banner {
        flex-direction: column;
        text-align: center;
    }

    .rf-bundle-action {
        width: 100%;
        justify-content: center;
    }

    .rf-skel-sizes,
    .rf-skel-products {
        grid-template-columns: 1fr;
    }
}
