/* === ELEMENTOR RESET === */
.elementor-page .elementor-section.elementor-section-full_width {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
.elementor-page .elementor-section.elementor-section-full_width > .elementor-container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
.elementor-page .elementor-column-gap-no > .elementor-column > .elementor-element-populated,
.elementor-page .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    padding: 0 !important;
}
.elementor-page .elementor-widget-wrap {
    padding: 0 !important;
}
.elementor-page .elementor-widget {
    margin-bottom: 0 !important;
}
.elementor-page .elementor-element {
    margin-bottom: 0 !important;
}
.elementor-page .elementor-section .elementor-container {
    max-width: 100% !important;
}
.elementor-page .elementor-column-wrap,
.elementor-page .elementor-widget-wrap {
    padding: 0 !important;
}
/* Remove Elementor's default gap between widgets */
.elementor-page .elementor > .elementor-element + .elementor-element {
    margin-top: 0 !important;
}

/* === FONT FACES === */
@font-face {
    font-family: 'Sofia Pro';
    src: url('../fonts/sofia-pro.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sofia Pro';
    src: url('../fonts/sofia-pro-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* === CSS VARIABLES === */
:root {
    --color-primary: #960078;
    --color-primary-dark: #7D1374;
    --color-brand-gray: #515054;
    --font-primary: 'Sofia Pro', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Montserrat', ui-sans-serif, system-ui, sans-serif;
}

/* === BOX MODEL RESET === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* === BODY BASE STYLES === */
body {
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #ffffff;
    color: #111111;
    margin: 0;
    padding: 0;
}

/* === .ra-container === */
.ra-container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* === HEADER === */
.ra-header {
    width: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    font-family: var(--font-primary);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
@media (min-width: 1024px) {
    .ra-header {
        position: relative;
        box-shadow: none;
    }
}

.ra-header__topbar {
    width: 100%;
    background: #f5f5f5;
    padding: 8px 0;
    display: none;
}
@media (min-width: 1024px) {
    .ra-header__topbar { display: block; }
}

.ra-header__topbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #333333;
    font-weight: 500;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.ra-header__topbar-items {
    display: flex;
    align-items: center;
    gap: 32px;
}

.ra-header__topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: color 0.15s;
    letter-spacing: -0.025em;
}
.ra-header__topbar-item:hover { color: #960078; }

.ra-header__language {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: color 0.15s;
}
.ra-header__language:hover { color: #960078; }
.ra-header__language svg,
.ra-header__language i { width: 14px; height: 14px; }
.ra-header__language svg:last-child,
.ra-header__language i:last-child { width: 12px; height: 12px; }

.ra-header__main {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid #f9fafb;
}
@media (min-width: 1024px) {
    .ra-header__main { padding: 24px 0; }
}

.ra-header__main-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
@media (min-width: 1024px) {
    .ra-header__main-inner { gap: 48px; }
}

.ra-header__logo {
    flex-shrink: 0;
}
.ra-header__logo a {
    display: block;
    position: relative;
    width: 140px;
    height: 30px;
    min-height: 30px;
}
@media (min-width: 1024px) {
    .ra-header__logo a {
        width: 180px;
        height: 40px;
        min-height: 40px;
    }
}
.ra-header__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ra-header__logo-text {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    display: flex;
    align-items: center;
    height: 100%;
}

.ra-header__search {
    flex-grow: 1;
    max-width: 672px;
    display: none;
}
@media (min-width: 1024px) {
    .ra-header__search { display: flex; }
}

.ra-header__search-inner {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.ra-header__search-inner input {
    width: 100%;
    background: #f5f5f5;
    font-size: 13px;
    color: #111827;
    padding: 14px 48px 14px 24px;
    border-radius: 9999px;
    border: none;
    outline: none;
    font-weight: 500;
    font-family: var(--font-primary);
    transition: all 0.15s;
}
.ra-header__search-inner input::placeholder {
    color: #6b7280;
}
.ra-header__search-inner input:focus {
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(150, 0, 120, 0.2);
}

.ra-header__search-inner button,
.ra-header__search-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #9ca3af;
    transition: color 0.15s;
    display: flex;
    align-items: center;
}
.ra-header__search-inner button:hover,
.ra-header__search-btn:hover { color: #960078; }
.ra-header__search-inner button svg,
.ra-header__search-inner button i,
.ra-header__search-btn svg,
.ra-header__search-btn i { width: 20px; height: 20px; }

.ra-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    color: #333333;
}
@media (min-width: 1024px) {
    .ra-header__actions { gap: 24px; }
}

.ra-header__action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: color 0.15s;
    text-decoration: none;
    color: inherit;
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-primary);
}
.ra-header__action:hover { color: #960078; }
.ra-header__action svg,
.ra-header__action i { width: 24px; height: 24px; stroke-width: 1.2; }

.ra-header__action-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    display: none;
}
@media (min-width: 1024px) {
    .ra-header__action-label { display: block; }
}

.ra-header__mobile-toggle,
.ra-header__mobile-search {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: #4b5563;
    transition: color 0.15s;
}
.ra-header__mobile-toggle:hover,
.ra-header__mobile-search:hover { color: #960078; }
.ra-header__mobile-toggle svg,
.ra-header__mobile-toggle i,
.ra-header__mobile-search svg,
.ra-header__mobile-search i { width: 24px; height: 24px; }

@media (min-width: 1024px) {
    .ra-header__mobile-toggle,
    .ra-header__mobile-search { display: none; }
}

.ra-header__nav {
    width: 100%;
    border-bottom: 1px solid #f3f4f6;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    display: none;
    background: #ffffff;
}
@media (min-width: 1024px) {
    .ra-header__nav { display: block; }
}

.ra-header__nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ra-header__nav-items {
    display: flex;
    align-items: center;
    gap: 28px;
}

.ra-header__nav-item {
    font-size: 12px;
    font-weight: 900;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    transition: all 0.15s;
}
.ra-header__nav-item:hover { color: #960078; }

.ra-header__cta {
    display: inline-block;
    background: #960078;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    transition: all 0.15s;
    box-shadow: 0 10px 15px -3px rgba(150,0,120,0.1);
    font-family: var(--font-primary);
}
.ra-header__cta:hover { background: #7D1374; }

.ra-header__mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 65px;
    background: #ffffff;
    z-index: 40;
    overflow-y: auto;
}
.ra-header__mobile-menu.is-open { display: block; }
@media (min-width: 1024px) {
    .ra-header__mobile-menu { display: none !important; }
}

.ra-header__mobile-menu-inner {
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 24px;
}

.ra-header__mobile-menu-label {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #9ca3af;
    margin: 0 0 16px 0;
}

.ra-header__mobile-menu-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.ra-header__mobile-menu-items a {
    font-size: 20px;
    font-weight: 900;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    transition: color 0.15s;
}
.ra-header__mobile-menu-items a:hover { color: #960078; }

.ra-header__mobile-menu-footer {
    padding-top: 32px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ra-header__cta--full {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 12px;
}

.ra-header__mobile-language {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    color: #9ca3af;
}
.ra-header__mobile-language span {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* === HERO GRID === */
.ra-hero {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 16px;
}
@media (min-width: 1024px) {
    .ra-hero { padding: 24px 16px; }
}

.ra-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    grid-auto-rows: 200px;
}
@media (min-width: 640px) {
    .ra-hero__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .ra-hero__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        grid-auto-rows: 300px;
    }
}

.ra-hero__card {
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
    display: block;
    text-decoration: none;
}

@media (min-width: 768px) {
    .ra-hero__card--span-2 { grid-column: span 2; }
}
@media (min-width: 1024px) {
    .ra-hero__card--tall { grid-row: span 2; }
}

.ra-hero__card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms;
}
.ra-hero__card:hover .ra-hero__card-image {
    transform: scale(1.05);
}
.ra-hero__card-image--placeholder {
    position: absolute;
    inset: 0;
    background: #e5e7eb;
}

.ra-hero__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    opacity: 0.9;
}

.ra-hero__card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 24px;
    width: 100%;
}

.ra-hero__card-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    margin: 0;
}

.ra-hero__card-cta {
    margin-top: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(16px);
    transition: all 300ms;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ra-hero__card:hover .ra-hero__card-cta {
    opacity: 1;
    transform: translateY(0);
}

.ra-hero__card-cta-line {
    display: inline-block;
    width: 20px;
    height: 1px;
    background: #ffffff;
}

/* === TRUST BAR === */
.ra-trustbar {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 16px;
}
@media (min-width: 1024px) {
    .ra-trustbar { padding: 48px 16px; }
}

.ra-trustbar__inner {
    background: #fcfcfc;
    width: 100%;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) {
    .ra-trustbar__inner { flex-direction: row; }
}
@media (min-width: 1024px) {
    .ra-trustbar__inner {
        padding: 48px 64px;
        gap: 48px;
    }
}

.ra-trustbar__circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 192px;
    height: 192px;
    background: rgba(150,0,120,0.05);
    border-radius: 9999px;
    margin-right: -96px;
    margin-top: -96px;
    transition: transform 700ms;
}
@media (min-width: 1024px) {
    .ra-trustbar__circle {
        width: 256px;
        height: 256px;
        margin-right: -128px;
        margin-top: -128px;
    }
}
.ra-trustbar__inner:hover .ra-trustbar__circle {
    transform: scale(1.1);
}

.ra-trustbar__headline {
    position: relative;
    z-index: 10;
    border-left: 4px solid #960078;
    padding-left: 24px;
}
@media (min-width: 768px) {
    .ra-trustbar__headline { width: 50%; }
}
@media (min-width: 1024px) {
    .ra-trustbar__headline {
        border-left-width: 8px;
        padding-left: 32px;
    }
}

.ra-trustbar__headline h2 {
    font-size: 24px;
    font-weight: 900;
    color: #000000;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin: 0;
}
@media (min-width: 1024px) {
    .ra-trustbar__headline h2 { font-size: 30px; }
}

.ra-trustbar__highlight {
    color: #960078;
}

.ra-trustbar__content {
    position: relative;
    z-index: 10;
}
@media (min-width: 768px) {
    .ra-trustbar__content { width: 50%; }
}

.ra-trustbar__content > p {
    color: #515054;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.625;
    margin: 0;
}
@media (min-width: 1024px) {
    .ra-trustbar__content > p { font-size: 18px; }
}

.ra-text-bold {
    color: #000000;
    font-weight: 700;
}

.ra-trustbar__stats {
    margin-top: 24px;
    display: flex;
    gap: 24px;
}
@media (min-width: 1024px) {
    .ra-trustbar__stats { gap: 32px; }
}

.ra-trustbar__stat {
    display: flex;
    flex-direction: column;
}

.ra-trustbar__stat-number {
    font-size: 20px;
    font-weight: 900;
    color: #000000;
    line-height: 1;
}
@media (min-width: 1024px) {
    .ra-trustbar__stat-number { font-size: 24px; }
}

.ra-trustbar__stat-label {
    font-size: 9px;
    color: #515054;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}
@media (min-width: 1024px) {
    .ra-trustbar__stat-label { font-size: 10px; }
}

/* === FEATURED PRODUCTS === */
.ra-products {
    padding: 64px 0;
    background: #ffffff;
}

.ra-products__header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px;
}
@media (min-width: 768px) {
    .ra-products__header {
        flex-direction: row;
        align-items: flex-end;
    }
}

.ra-products__title-block {
    max-width: 672px;
    border-left: 4px solid #960078;
    padding-left: 24px;
}

.ra-products__title {
    font-size: 24px;
    font-weight: 900;
    color: #000000;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}
@media (min-width: 768px) {
    .ra-products__title { font-size: 30px; }
}

.ra-products__subtitle {
    color: #515054;
    font-weight: 500;
    margin: 0;
}

.ra-products__view-all {
    display: inline-flex;
    align-items: center;
    color: #960078;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: all 0.15s;
    white-space: nowrap;
}
.ra-products__view-all:hover { text-decoration: underline; }
.ra-products__view-all svg,
.ra-products__view-all i {
    width: 16px;
    height: 16px;
    margin-left: 8px;
    transition: transform 0.15s;
}
.ra-products__view-all:hover svg,
.ra-products__view-all:hover i { transform: translateX(4px); }

.ra-products__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 768px) {
    .ra-products__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .ra-products__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
}
@media (min-width: 1280px) {
    .ra-products__grid { grid-template-columns: repeat(6, 1fr); }
}

.ra-products__grid[style*="--ra-cols"] {
    grid-template-columns: repeat(var(--ra-cols, 6), 1fr);
}

.ra-product-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.ra-product-card__image-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f9f9f9;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid #f9fafb;
}

.ra-product-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms, opacity 120ms;
}
.ra-product-card:hover .ra-product-card__image {
    transform: scale(1.1);
}

.ra-product-card__badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #960078;
    color: #ffffff;
    font-size: 9px;
    font-weight: 900;
    padding: 6px 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ra-product-card__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ra-product-card__name {
    font-size: 11px;
    font-weight: 900;
    color: #000000;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.15s;
}
@media (min-width: 1024px) {
    .ra-product-card__name { font-size: 13px; }
}
.ra-product-card:hover .ra-product-card__name { color: #960078; }

.ra-product-card__desc {
    font-size: 10px;
    color: #515054;
    font-weight: 500;
    margin: 0 0 12px 0;
    line-height: 1.625;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: none;
}
@media (min-width: 640px) {
    .ra-product-card__desc { display: -webkit-box; }
}
@media (min-width: 1024px) {
    .ra-product-card__desc { font-size: 11px; }
}

.ra-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #f9fafb;
}
@media (min-width: 1024px) {
    .ra-product-card__footer { padding-top: 12px; }
}

.ra-product-card__price-block {
    display: flex;
    flex-direction: column;
}

.ra-product-card__price-label {
    font-size: 8px;
    color: #515054;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}
@media (min-width: 1024px) {
    .ra-product-card__price-label { font-size: 10px; }
}

.ra-product-card__price {
    font-size: 12px;
    font-weight: 900;
    color: #000000;
    letter-spacing: -0.025em;
}
@media (min-width: 1024px) {
    .ra-product-card__price { font-size: 14px; }
}

/* === QUOTE FORM === */
.ra-quote-form {
    padding: 48px 0;
    background: #f9f9f9;
}
@media (min-width: 1024px) {
    .ra-quote-form { padding: 96px 0; }
}

.ra-quote-form__inner {
    background: #ffffff;
    box-shadow: 0 40px 100px -20px rgba(150,0,120,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #f3f4f6;
}
@media (min-width: 1024px) {
    .ra-quote-form__inner { flex-direction: row; }
}

.ra-quote-form__sidebar {
    background: #1a1a1a;
    padding: 32px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
@media (min-width: 1024px) {
    .ra-quote-form__sidebar {
        width: 33.333%;
        padding: 48px;
    }
}

.ra-quote-form__sidebar-circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: rgba(150,0,120,0.2);
    border-radius: 9999px;
    margin-right: -64px;
    margin-top: -64px;
}

.ra-quote-form__sidebar-content {
    position: relative;
    z-index: 10;
}

.ra-quote-form__badge {
    display: inline-block;
    background: #960078;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 24px;
    color: #ffffff;
}

.ra-quote-form__heading {
    font-size: 30px;
    font-weight: 900;
    margin: 0 0 24px 0;
    letter-spacing: -0.05em;
    line-height: 1.25;
    color: #ffffff;
}
@media (min-width: 1024px) {
    .ra-quote-form__heading { font-size: 36px; }
}

.ra-quote-form__desc {
    color: rgba(255,255,255,0.5);
    margin: 0 0 32px 0;
    font-size: 12px;
    line-height: 1.625;
    font-weight: 500;
}
@media (min-width: 1024px) {
    .ra-quote-form__desc {
        font-size: 13px;
        margin-bottom: 48px;
    }
}

.ra-quote-form__contacts {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 10;
}
@media (min-width: 1024px) {
    .ra-quote-form__contacts { gap: 32px; }
}

.ra-quote-form__contact-item label {
    display: block;
    font-size: 9px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
@media (min-width: 1024px) {
    .ra-quote-form__contact-item label { font-size: 10px; }
}

.ra-quote-form__contact-item a {
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.15s;
}
@media (min-width: 1024px) {
    .ra-quote-form__contact-item a { font-size: 18px; }
}
.ra-quote-form__contact-item a:hover { color: #960078; }

.ra-quote-form__contact-item p {
    font-weight: 700;
    font-size: 13px;
    line-height: 1.375;
    color: #ffffff;
    margin: 0;
}
@media (min-width: 1024px) {
    .ra-quote-form__contact-item p { font-size: 14px; }
}

.ra-quote-form__form-area {
    padding: 32px;
}
@media (min-width: 1024px) {
    .ra-quote-form__form-area {
        width: 66.667%;
        padding: 64px;
    }
}

.ra-quote-form__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
@media (min-width: 1024px) {
    .ra-quote-form__form { gap: 32px; }
}

.ra-quote-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) {
    .ra-quote-form__row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .ra-quote-form__row { gap: 32px; }
}

.ra-quote-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ra-quote-form__field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #515054;
}

.ra-quote-form__field input,
.ra-quote-form__field select,
.ra-quote-form__field textarea {
    width: 100%;
    background: #fcfcfc;
    border: none;
    border-bottom: 2px solid #f3f4f6;
    padding: 8px 0;
    font-size: 14px;
    font-family: var(--font-primary);
    outline: none;
    transition: border-color 0.15s;
    border-radius: 0;
    -webkit-appearance: none;
}
@media (min-width: 1024px) {
    .ra-quote-form__field input,
    .ra-quote-form__field select,
    .ra-quote-form__field textarea { padding: 12px 0; }
}
.ra-quote-form__field input:focus,
.ra-quote-form__field select:focus,
.ra-quote-form__field textarea:focus {
    border-bottom-color: #960078;
}

.ra-quote-form__field select { cursor: pointer; }
.ra-quote-form__field textarea { resize: none; }

.ra-quote-form__submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #960078;
    color: #ffffff;
    padding: 16px 32px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    border: none;
    cursor: pointer;
    transition: all 300ms;
    box-shadow: 0 20px 25px -5px rgba(150,0,120,0.2);
    font-family: var(--font-primary);
}
@media (min-width: 1024px) {
    .ra-quote-form__submit {
        padding: 20px 32px;
        font-size: 12px;
    }
}
.ra-quote-form__submit:hover { background: #7D1374; }
.ra-quote-form__submit svg,
.ra-quote-form__submit i { width: 16px; height: 16px; transition: transform 0.15s; }
.ra-quote-form__submit:hover svg,
.ra-quote-form__submit:hover i { transform: translateX(4px) translateY(-4px); }

.ra-quote-form__success {
    text-align: center;
    padding: 48px 24px;
    color: #960078;
    font-weight: 700;
    font-size: 18px;
}

/* === FOOTER === */
.ra-footer {
    background: #111111;
    color: #ffffff;
    padding-top: 64px;
    padding-bottom: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 1024px) {
    .ra-footer { padding-top: 80px; }
}

.ra-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 64px;
}
@media (min-width: 640px) {
    .ra-footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .ra-footer__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 48px;
    }
}

.ra-footer__brand {
    grid-column: span 1;
}
@media (min-width: 640px) {
    .ra-footer__brand { grid-column: span 2; }
}
@media (min-width: 1024px) {
    .ra-footer__brand { grid-column: span 1; }
}

.ra-footer__logo {
    display: block;
    width: 140px;
    height: 30px;
    min-height: 30px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}
@media (min-width: 1024px) {
    .ra-footer__logo { margin-bottom: 32px; }
}
.ra-footer__logo a {
    display: block;
    width: 100%;
    height: 100%;
}
.ra-footer__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ra-footer__desc {
    color: rgba(255,255,255,0.6);
    margin: 0 0 24px 0;
    font-size: 12px;
    line-height: 1.625;
    max-width: 320px;
    font-weight: 500;
}
@media (min-width: 1024px) {
    .ra-footer__desc {
        font-size: 13px;
        margin-bottom: 32px;
    }
}

.ra-footer__social {
    display: flex;
    gap: 16px;
}

.ra-footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.15s;
}
.ra-footer__social-link:hover {
    background: #960078;
    color: #ffffff;
}
.ra-footer__social-link svg,
.ra-footer__social-link i { width: 16px; height: 16px; }

.ra-footer__column {}

.ra-footer__column-title {
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 24px 0;
    color: rgba(255,255,255,0.4);
}
@media (min-width: 1024px) {
    .ra-footer__column-title {
        font-size: 14px;
        margin-bottom: 32px;
    }
}

.ra-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media (min-width: 1024px) {
    .ra-footer__links { gap: 16px; }
}

.ra-footer__link,
.ra-footer__links a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.15s;
}
@media (min-width: 1024px) {
    .ra-footer__link,
    .ra-footer__links a { font-size: 14px; }
}
.ra-footer__link:hover,
.ra-footer__links a:hover { color: #960078; }

.ra-footer__contact {
    grid-column: span 1;
}
@media (min-width: 640px) {
    .ra-footer__contact { grid-column: span 2; }
}
@media (min-width: 1024px) {
    .ra-footer__contact { grid-column: span 1; }
}

.ra-footer__contact-label {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ra-footer__contact-value {
    display: block;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.15s;
}
.ra-footer__contact-value:hover { color: #960078; }

.ra-footer__contact-address {
    display: block;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
}

.ra-footer__contact-item {
    color: rgba(255,255,255,0.6);
}
.ra-footer__contact-item + .ra-footer__contact-item {
    margin-top: 24px;
}

.ra-footer__bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    text-align: center;
}
@media (min-width: 768px) {
    .ra-footer__bottom {
        flex-direction: row;
        text-align: left;
    }
}

.ra-footer__legal {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
}
@media (min-width: 1024px) {
    .ra-footer__legal { font-size: 11px; }
}
.ra-footer__legal p { margin: 0 0 4px 0; }
.ra-footer__legal p:last-child { margin: 0; }

.ra-footer__bottom-links {
    display: flex;
    gap: 24px;
}

.ra-footer__bottom-link {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s;
}
@media (min-width: 1024px) {
    .ra-footer__bottom-link { font-size: 11px; }
}
.ra-footer__bottom-link:hover { color: #ffffff; }

/* === UTILITIES === */
.line-clamp-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.font-primary { font-family: var(--font-primary); }
.min-h-screen { min-height: 100vh; }
.bg-white { background: #ffffff; }

/* WooCommerce price range styling */
.ra-product-card__footer .woocommerce-Price-amount,
.ra-product-card__footer .price {
    font-size: inherit !important;
    font-weight: inherit !important;
    color: inherit !important;
}
.ra-product-card__footer del {
    opacity: 0.5;
    font-size: 0.8em;
}
.ra-product-card__footer ins {
    text-decoration: none;
}
