:root {
    --wbdm-color-primary: #e11d35;
    --wbdm-color-primary-dark: #b50f24;
    --wbdm-color-primary-soft: #fff2f4;
    --wbdm-color-text: #111827;
    --wbdm-color-text-light: #6b7280;
    --wbdm-color-border: #e5e7eb;
    --wbdm-color-bg: #ffffff;
    --wbdm-color-bg-soft: #fafafa;
    --wbdm-color-green: #25d366;
    --wbdm-color-footer: #8f0f1f;
    --wbdm-shadow-sm: 0 8px 20px rgba(17, 24, 39, 0.06);
    --wbdm-shadow-md: 0 16px 40px rgba(17, 24, 39, 0.08);
    --wbdm-radius-sm: 10px;
    --wbdm-radius-md: 16px;
    --wbdm-radius-lg: 24px;
    --wbdm-container: 1280px;
    --wbdm-font-body: "Manrope", sans-serif;
}

body {
    font-family: var(--wbdm-font-body);
    color: var(--wbdm-color-text);
}

.site-header .container,
.hero-section .container,
.top-stats .container,
.about-section .container,
.event-section .container,
.items-section .container,
.how-section .container,
.contact-section .container,
.faq-section .container,
.site-footer .container {
    width: min(100% - 40px, var(--wbdm-container));
    margin-inline: auto;
}

.site-header,
.site-footer,
.hero-section,
.top-stats,
.about-section,
.event-section,
.items-section,
.how-section,
.contact-section,
.faq-section {
    box-sizing: border-box;
}

.site-header a,
.site-footer a,
.hero-section a,
.items-section a,
.contact-section a {
    text-decoration: none;
}

.site-header ul,
.site-footer ul,
.faq-section ul,
.items-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header img,
.site-footer img,
.about-section img,
.items-section img {
    display: block;
    max-width: 100%;
}

.section-space {
    padding: 90px 0;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 92px;
}

.site-logo img {
    max-height: 58px;
    width: auto;
}

.main-nav .menu,
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    transition: 0.25s ease;
}

.main-nav a:hover {
    color: var(--wbdm-color-primary);
}

.header-account-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border: 1px solid var(--wbdm-color-border);
    border-radius: 12px;
    background: #fff;
    color: var(--wbdm-color-text);
    font-size: 18px;
    transition: 0.25s ease;
}

.header-account-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.header-account-link:hover {
    border-color: var(--wbdm-color-primary);
    background: var(--wbdm-color-primary-soft);
    color: var(--wbdm-color-primary);
    transform: translateY(-1px);
}

.header-mobile-toggle {
    display: none;
}

.mobile-nav {
    display: none;
    padding: 0 0 18px;
}

.mobile-nav .menu,
.mobile-nav ul {
    display: grid;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--wbdm-color-primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--wbdm-color-primary-dark);
    color: #fff;
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-outline {
    background: #fff;
    color: var(--wbdm-color-primary);
    border-color: rgba(225, 29, 53, 0.25);
}

.btn-outline:hover {
    background: var(--wbdm-color-primary-soft);
}

.wbdm-auction-items .item-card .btn-outline {
    background: #fff;
    color: var(--wbdm-color-primary);
    border-color: rgba(225, 29, 53, 0.25);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.wbdm-auction-items .item-card .btn-outline:hover {
    background: var(--wbdm-color-primary);
    color: #fff;
    border-color: var(--wbdm-color-primary);
    transform: translateY(-1px);
}

.btn-small {
    min-height: 40px;
    padding: 0 16px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
}

.btn-whatsapp {
    background: var(--wbdm-color-green);
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1fb857;
    color: #fff;
}

.contact-form-card .wpcf7-submit.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-form-card .wpcf7-submit.btn-primary::before {
    content: "\f1d8";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
}

.btn-footer-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.site-404 {
    background: linear-gradient(180deg, var(--wbdm-color-primary-soft) 0%, #fff 62%);
}

.site-404 .error-404 {
    overflow: hidden;
    padding: 96px 0 104px;
    position: relative;
}

.site-404 .error-404::before {
    background: linear-gradient(135deg, rgba(225, 29, 53, 0.16), rgba(143, 15, 31, 0.04));
    border-radius: 999px;
    content: "";
    height: 360px;
    position: absolute;
    right: max(-120px, calc((100vw - var(--wbdm-container)) / 2 - 180px));
    top: 48px;
    width: 360px;
}

.site-404__inner {
    align-items: center;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 1fr) 380px;
    position: relative;
    z-index: 1;
}

.site-404__content {
    max-width: 720px;
}

.site-404__eyebrow {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(225, 29, 53, 0.18);
    border-radius: 999px;
    color: var(--wbdm-color-primary);
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    gap: 8px;
    margin-bottom: 22px;
    padding: 10px 16px;
    text-transform: uppercase;
}

.site-404__content h1 {
    color: var(--wbdm-color-text);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 20px;
}

.site-404__content p {
    color: var(--wbdm-color-text-light);
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
    max-width: 640px;
}

.site-404__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.site-404__card {
    background: #fff;
    border: 1px solid var(--wbdm-color-border);
    border-radius: var(--wbdm-radius-lg);
    box-shadow: var(--wbdm-shadow-md);
    color: var(--wbdm-color-text);
    display: grid;
    gap: 18px;
    padding: 30px;
}

.site-404__card span {
    color: var(--wbdm-color-text-light);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.site-404__card strong {
    color: var(--wbdm-color-text);
    font-size: 30px;
    line-height: 1.15;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(155, 10, 26, 0.72), rgba(225, 29, 53, 0.74));
    color: #fff;
    padding: 80px 0 90px;
}

.hero-section.has-background-image {
    background-image: var(--wbdm-hero-bg-image);
    background-size: cover;
    background-position: center left;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
}

.hero-content h1 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content h1 span {
    font-style: italic;
    font-weight: 700;
}

.hero-lead {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
    max-width: 700px;
}

.hero-content p + p {
    margin-top: 16px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-card {
    background: #fff;
    color: var(--wbdm-color-text);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--wbdm-shadow-md);
}

.hero-card h3 {
    font-size: 30px;
    margin-bottom: 6px;
}

.hero-card-subtitle {
    color: var(--wbdm-color-text-light);
    margin-bottom: 24px;
}

.progress-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
    font-size: 15px;
}

.progress-bar {
    width: 100%;
    height: 14px;
    background: #f2d4d8;
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--wbdm-color-primary);
    border-radius: 999px;
}

.progress-caption {
    text-align: center;
    color: var(--wbdm-color-text-light);
    font-size: 14px;
    margin-top: 10px;
}

.hero-stat-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff6f7;
    border: 1px solid #f5d4d9;
    border-radius: 16px;
    padding: 18px;
    margin: 24px 0;
}

.hero-stat-icon,
.stat-icon,
.event-icon,
.whatsapp-icon {
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.hero-stat-icon {
    width: 56px;
    height: 56px;
    background: #fff;
    border: 1px solid #f1d6da;
    color: var(--wbdm-color-primary);
    font-size: 22px;
}

.hero-stat-box strong {
    display: block;
    font-size: 30px;
    line-height: 1.1;
}

.hero-stat-box span,
.hero-card-update {
    color: var(--wbdm-color-text-light);
}

.hero-card-update {
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
}

.section-heading {
    text-align: center;
    margin-bottom: 38px;
}

.section-heading.left-align {
    text-align: left;
}

.section-heading h1,
.section-heading h2 {
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.1;
    margin-bottom: 12px;
}

.section-heading p {
    font-size: 18px;
    color: var(--wbdm-color-text-light);
}

.stats-grid,
.event-grid,
.how-grid {
    display: grid;
    gap: 24px;
}

.stats-grid {
    grid-template-columns: repeat(3, 1fr);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px;
    border: 1px solid var(--wbdm-color-border);
    border-radius: var(--wbdm-radius-md);
    background: #fff;
    box-shadow: var(--wbdm-shadow-sm);
}

.stat-icon {
    width: 62px;
    height: 62px;
    font-size: 24px;
}

.stat-icon.red {
    background: #fff1f3;
    color: var(--wbdm-color-primary);
}

.stat-item strong {
    display: block;
    font-size: 34px;
    line-height: 1.1;
}

.stat-item span {
    color: var(--wbdm-color-text-light);
}

.about-grid,
.contact-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.about-grid {
    grid-template-columns: 0.8fr 1.2fr;
}

.contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: stretch;
}

.about-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: var(--wbdm-shadow-md);
    object-fit: cover;
}

.about-content p {
    font-size: 17px;
    color: #374151;
}

.about-content p + p {
    margin-top: 18px;
}

.wbdm-about-slider {
    position: relative;
}

.wbdm-about-slider .splide__arrow {
    background: #fff;
    opacity: 1;
}

.event-section {
    background: linear-gradient(180deg, #fff7f8 0%, #fff 100%);
}

.event-grid {
    grid-template-columns: repeat(4, 1fr);
}

.event-card,
.how-card,
.contact-form-card,
.whatsapp-card,
.faq-item,
.item-card {
    background: #fff;
    box-shadow: var(--wbdm-shadow-sm);
}

.event-card {
    border: 1px solid #f1d6da;
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
}

.event-card.featured {
    border: 2px solid #f6c7cf;
}

.event-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    background: var(--wbdm-color-primary-soft);
    color: var(--wbdm-color-primary);
    font-size: 28px;
}

.event-card h3,
.how-card h3,
.item-content h3 {
    font-size: 20px;
}

.event-card h3 {
    margin-bottom: 12px;
}

.event-card p,
.how-card p,
.whatsapp-card p,
.faq-answer {
    color: #4b5563;
}

.event-card__link {
    margin-top: 12px;
}

.items-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--wbdm-color-border);
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: #374151;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--wbdm-color-primary);
    color: #fff;
    border-color: var(--wbdm-color-primary);
}

.items-search {
    position: relative;
    width: 320px;
    max-width: 100%;
}

.items-search i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #9ca3af;
}

.items-search input {
    width: 100%;
    min-height: 46px;
    padding: 0 16px 0 42px;
    border: 1px solid var(--wbdm-color-border);
    border-radius: 999px;
    outline: none;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.item-card {
    border: 1px solid var(--wbdm-color-border);
    border-radius: 18px;
    overflow: hidden;
    transition: 0.25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(17, 24, 39, 0.1);
}

.item-card img {
    width: 100%;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
    background: #fff;
    border-radius: 18px 18px 0 0;
}

.item-content {
    padding: 20px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.item-content h3 {
    line-height: 1.3;
    margin-bottom: 14px;
}

.item-content h3 a,
.item-card__details-link {
    color: inherit;
    text-decoration: none;
}

.item-content h3 a:hover,
.item-card__details-link:hover {
    color: var(--wbdm-color-primary);
}

.item-card__footer {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: auto;
}

.item-card__details-link {
    display: block;
}

.item-meta {
    font-size: 14px;
    color: var(--wbdm-color-text-light);
}

.item-price {
    font-size: 30px;
    font-weight: 800;
    color: var(--wbdm-color-primary);
    margin: 6px 0 10px;
}

.item-estimated-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--wbdm-color-text-light);
    margin: 0 0 4px;
}

.item-estimated-value {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 18px;
}

.wbdm-auction-items__results.is-loading,
.wbdm-auction-shop__results-list.is-loading {
    opacity: 0.5;
    pointer-events: none;
}

.wbdm-auction-items__load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.wbdm-auction-items__load-more:disabled {
    cursor: wait;
    opacity: 0.7;
}

.wbdm-auction-items__view-all {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.wbdm-auction-shop {
    background: #fff;
}

.wbdm-auction-shop__toolbar {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 32px;
}

.wbdm-auction-shop__toolbar .items-search {
    width: min(100%, 520px);
}

.wbdm-auction-shop__toolbar select {
    width: min(100%, 300px);
    min-height: 50px;
    border: 1px solid var(--wbdm-color-border);
    background: #fff;
    border-radius: 12px;
    padding: 0 16px;
    color: #374151;
    font-weight: 700;
}

.wbdm-auction-shop__layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.wbdm-auction-shop__sidebar {
    border-right: 1px solid var(--wbdm-color-border);
    padding-right: 24px;
}

.wbdm-auction-shop__sidebar h2 {
    font-size: 22px;
    margin: 0 0 18px;
}

.wbdm-auction-shop__sidebar ul {
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.wbdm-auction-shop__sidebar a {
    display: block;
    border-radius: 10px;
    padding: 12px 14px;
    color: #374151;
    font-weight: 700;
    text-decoration: none;
}

.wbdm-auction-shop__sidebar a:hover,
.wbdm-auction-shop__sidebar a.is-active {
    background: var(--wbdm-color-primary-soft);
    color: var(--wbdm-color-primary);
}

.wbdm-auction-shop__count {
    margin: 0 0 18px;
    color: var(--wbdm-color-text-light);
    font-weight: 700;
}

.how-section {
    background: #fff8f9;
}

.how-grid {
    grid-template-columns: repeat(4, 1fr);
}

.how-card {
    padding: 28px 24px;
    border-radius: 18px;
    border: 1px solid #f1d6da;
}

.how-number {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--wbdm-color-primary);
    color: #fff;
    font-weight: 800;
    margin-bottom: 18px;
}

.contact-form-card,
.whatsapp-card {
    border: 1px solid var(--wbdm-color-border);
    border-radius: 22px;
    padding: 30px;
}

.contact-form-card h3,
.whatsapp-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group,
.contact-form-card .wpcf7-form p {
    margin-bottom: 18px;
}

.form-group label,
.contact-form-card .wpcf7-form label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea,
.contact-form-card .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    border: 1px solid var(--wbdm-color-border);
    background: #fff;
    border-radius: 12px;
    min-height: 50px;
    padding: 14px 16px;
    outline: none;
    transition: 0.2s ease;
}

.form-group textarea,
.contact-form-card textarea.wpcf7-form-control {
    min-height: 140px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.contact-form-card .wpcf7-form-control:not(.wpcf7-submit):focus {
    border-color: #f3a9b4;
    box-shadow: 0 0 0 4px rgba(225, 29, 53, 0.08);
}

.contact-form-card .wpcf7-submit {
    width: 100%;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 12px;
    border: 0;
    background: var(--wbdm-color-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.contact-form-card .wpcf7-spinner {
    display: none;
}

.whatsapp-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.whatsapp-icon {
    width: 76px;
    height: 76px;
    background: #e8fff0;
    color: var(--wbdm-color-green);
    font-size: 38px;
    margin-bottom: 18px;
}

.whatsapp-card p {
    margin-bottom: 20px;
}

.whatsapp-benefits {
    margin-top: 24px;
    display: grid;
    gap: 10px;
}

.whatsapp-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
}

.whatsapp-benefits i {
    color: var(--wbdm-color-green);
}

.faq-container {
    max-width: 980px;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--wbdm-color-border);
    border-radius: 16px;
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 22px 24px;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    padding-right: 58px;
}
.faq-item > summary::marker {
    display: none;
    content: "";
}

.faq-item summary::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--wbdm-color-primary);
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0 24px 22px;
}

.site-footer {
    background: linear-gradient(135deg, #a31022 0%, #7d0918 100%);
    color: #fff;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 60px 0 40px;
}

.footer-logo {
    max-height: 54px;
    margin-bottom: 18px;
    width: auto;
}

.footer-col p,
.footer-col li,
.footer-col a {
    color: rgba(255, 255, 255, 0.88);
}

.footer-col a:hover,
.footer-col a:focus,
.contact-list a:hover,
.contact-list a:focus {
    color: #fff;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col ul {
    display: grid;
    gap: 10px;
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.socials a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.2s ease;
}

.socials a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
}

.footer-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 1200px) {
    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .event-grid,
    .how-grid,
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wbdm-auction-shop__layout {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 24px;
    }

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

    .main-nav {
        display: none;
    }

    .site-404__inner {
        grid-template-columns: 1fr;
    }

    .site-404__card {
        max-width: 520px;
    }

    .header-mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border: 1px solid var(--wbdm-color-border);
        background: #fff;
        border-radius: 12px;
        color: var(--wbdm-color-text);
    }

    .mobile-nav.is-open {
        display: block;
    }
}

@media (max-width: 767px) {
    .section-space {
        padding: 70px 0;
    }

    .hero-section {
        background-image: linear-gradient(rgba(155, 10, 26, 0.72), rgba(225, 29, 53, 0.74));
        padding: 70px 0;
    }

    .hero-section.has-background-image {
        background-image: linear-gradient(rgba(155, 10, 26, 0.72), rgba(225, 29, 53, 0.74)), var(--wbdm-hero-bg-image);
    }

    .site-404 .error-404 {
        padding: 70px 0;
    }

    .site-404 .error-404::before {
        height: 240px;
        right: -140px;
        top: 30px;
        width: 240px;
    }

    .site-404__content h1 {
        font-size: 42px;
    }

    .site-404__content p {
        font-size: 18px;
    }

    .site-404__actions,
    .site-404__actions .btn {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-lead {
        font-size: 20px;
    }

    .stats-grid,
    .event-grid,
    .how-grid,
    .items-grid,
    .footer-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .wbdm-auction-shop__toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .wbdm-auction-shop__toolbar .items-search,
    .wbdm-auction-shop__toolbar select {
        width: 100%;
    }

    .wbdm-auction-shop__layout {
        grid-template-columns: 1fr;
    }

    .wbdm-auction-shop__results .items-grid {
        grid-template-columns: 1fr;
    }

    .wbdm-auction-shop__sidebar {
        border-right: 0;
        border-bottom: 1px solid var(--wbdm-color-border);
        padding: 0 0 20px;
    }

    .stat-item strong {
        font-size: 28px;
    }

    .section-heading h1,
    .section-heading h2 {
        font-size: 32px;
    }

    .footer-bottom-inner,
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-inner {
        justify-content: center;
        padding: 16px 0;
    }

    .header-cta {
        width: 100%;
    }

    .header-account-link {
        position: absolute;
        top: 22px;
        right: 82px;
    }
}
