/*
Theme Name: Bosvena Auctions
Theme URI: https://bosvena2.smoothbyteit.dev
Description: Premium auction house theme for Bosvena Auctions – Cornwall & Devon
Author: SmoothByte IT
Author URI: https://smoothbyteit.dev
Template: hello-elementor
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bosvena-auctions
*/

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
    /* Brand Colors */
    --bos-primary: #8B6914;
    --bos-primary-dark: #6D5210;
    --bos-primary-light: #C9A84C;
    --bos-secondary: #3D2B1F;
    --bos-secondary-light: #5C4033;
    --bos-accent: #C9A84C;
    --bos-accent-light: #E8D5A0;

    /* Neutrals */
    --bos-cream: #F7EFD4;
    --bos-cream-dark: #EFE5C3;
    --bos-white: #FFFFFF;
    --bos-text: #2D2D2D;
    --bos-text-light: #6B6B6B;
    --bos-text-muted: #9B9B9B;
    --bos-border: #E5DDD0;

    /* Typography */
    --bos-font-heading: 'Baskervville', Georgia, 'Times New Roman', serif;
    --bos-font-body: 'Libre Baskerville', Georgia, 'Times New Roman', serif;

    /* Spacing */
    --bos-section-padding: 80px;
    --bos-card-radius: 12px;
    --bos-btn-radius: 8px;

    /* Shadows */
    --bos-shadow-sm: 0 2px 8px rgba(61, 43, 31, 0.08);
    --bos-shadow-md: 0 4px 20px rgba(61, 43, 31, 0.12);
    --bos-shadow-lg: 0 8px 40px rgba(61, 43, 31, 0.16);
    --bos-shadow-hover: 0 12px 48px rgba(61, 43, 31, 0.2);

    /* Transitions */
    --bos-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --bos-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--bos-font-body);
    color: var(--bos-text);
    background-color: var(--bos-cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--bos-font-heading);
    color: var(--bos-secondary);
    font-weight: 700;
    line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p {
    font-size: 1.05rem;
    color: var(--bos-text);
    margin-bottom: 1.2em;
}

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

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

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

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.bosvena-header {
    background: var(--bos-white);
    border-bottom: 1px solid var(--bos-border);
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: box-shadow var(--bos-transition);
}

.bosvena-header.scrolled {
    box-shadow: var(--bos-shadow-md);
}

.bosvena-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.bosvena-logo {
    font-family: var(--bos-font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--bos-secondary);
    letter-spacing: 0.02em;
}

.bosvena-logo span {
    color: var(--bos-primary);
}

.bosvena-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.bosvena-nav a {
    font-family: var(--bos-font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--bos-text);
    padding: 8px 0;
    position: relative;
    transition: color var(--bos-transition);
}

.bosvena-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bos-primary);
    transition: width var(--bos-transition);
}

.bosvena-nav a:hover,
.bosvena-nav a.current {
    color: var(--bos-primary);
}

.bosvena-nav a:hover::after,
.bosvena-nav a.current::after {
    width: 100%;
}

.bosvena-nav-cta {
    background: var(--bos-primary) !important;
    color: var(--bos-white) !important;
    padding: 10px 24px !important;
    border-radius: var(--bos-btn-radius);
    font-weight: 600 !important;
}

.bosvena-nav-cta:hover {
    background: var(--bos-primary-dark) !important;
    color: var(--bos-white) !important;
}

.bosvena-nav-cta::after {
    display: none !important;
}

/* Login / Register link */
.bosvena-nav-login {
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    color: var(--bos-primary) !important;
    border: 1px solid var(--bos-primary);
    padding: 6px 16px !important;
    border-radius: var(--bos-btn-radius);
    transition: all var(--bos-transition);
    white-space: nowrap;
}

.bosvena-nav-login:hover {
    background: var(--bos-primary) !important;
    color: var(--bos-white) !important;
}

.bosvena-nav-login::after {
    display: none !important;
}

/* ========================================
   DROPDOWN MENU
   ======================================== */
.bosvena-dropdown {
    position: relative;
}

.bosvena-dropdown-toggle {
    font-family: var(--bos-font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--bos-text);
    padding: 8px 0;
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    transition: color var(--bos-transition);
    position: relative;
}

.bosvena-dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bos-primary);
    transition: width var(--bos-transition);
}

.bosvena-dropdown-toggle:hover,
.bosvena-dropdown-toggle.current {
    color: var(--bos-primary);
}

.bosvena-dropdown-toggle:hover::after,
.bosvena-dropdown-toggle.current::after {
    width: 100%;
}

.bosvena-dropdown-toggle svg {
    transition: transform var(--bos-transition);
}

.bosvena-dropdown:hover .bosvena-dropdown-toggle svg,
.bosvena-dropdown.open .bosvena-dropdown-toggle svg {
    transform: rotate(180deg);
}

.bosvena-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bos-white);
    border-radius: var(--bos-card-radius);
    box-shadow: var(--bos-shadow-lg);
    border: 1px solid var(--bos-border);
    min-width: 220px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity var(--bos-transition), visibility var(--bos-transition), transform var(--bos-transition);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bosvena-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--bos-white);
    filter: drop-shadow(0 -1px 1px rgba(61,43,31,0.06));
}

.bosvena-dropdown-menu::after {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}

.bosvena-dropdown:hover .bosvena-dropdown-menu,
.bosvena-dropdown.open .bosvena-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.bosvena-dropdown-menu a {
    display: block;
    padding: 10px 20px !important;
    font-size: 0.93rem !important;
    color: var(--bos-text) !important;
    transition: all var(--bos-transition);
    white-space: nowrap;
}

.bosvena-dropdown-menu a::after {
    display: none !important;
}

.bosvena-dropdown-menu a:hover {
    background: var(--bos-cream) !important;
    color: var(--bos-primary) !important;
    padding-left: 24px !important;
}

.bosvena-dropdown-menu a.current {
    color: var(--bos-primary) !important;
    background: var(--bos-cream-dark) !important;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.bosvena-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.bosvena-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--bos-secondary);
    transition: var(--bos-transition);
}

/* ========================================
   BUTTONS
   ======================================== */
.bos-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--bos-btn-radius);
    font-family: var(--bos-font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--bos-transition);
    border: 2px solid transparent;
    text-decoration: none;
    line-height: 1.4;
}

.bos-btn-primary {
    background: var(--bos-primary);
    color: var(--bos-white);
    border-color: var(--bos-primary);
}

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

.bos-btn-secondary {
    background: transparent;
    color: var(--bos-primary);
    border-color: var(--bos-primary);
}

.bos-btn-secondary:hover {
    background: var(--bos-primary);
    color: var(--bos-white);
    transform: translateY(-2px);
    box-shadow: var(--bos-shadow-md);
}

.bos-btn-white {
    background: var(--bos-white);
    color: var(--bos-primary);
    border-color: var(--bos-white);
}

.bos-btn-white:hover {
    background: var(--bos-cream);
    color: var(--bos-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--bos-shadow-md);
}

/* Elementor Button Overrides */
.elementor-widget-button .elementor-button {
    font-family: var(--bos-font-body) !important;
    font-weight: 600 !important;
    border-radius: var(--bos-btn-radius) !important;
    padding: 14px 32px !important;
    transition: all var(--bos-transition) !important;
}

/* ========================================
   HERO SECTIONS
   ======================================== */
.bos-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.bos-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(61, 43, 31, 0.85), rgba(139, 105, 20, 0.7));
    z-index: 1;
}

.bos-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px 24px;
}

.bos-hero h1 {
    color: var(--bos-white);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.bos-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.bos-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Hero (smaller) */
.bos-page-hero {
    min-height: 40vh;
    background: linear-gradient(135deg, var(--bos-secondary) 0%, var(--bos-secondary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bos-page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.bos-page-hero h1 {
    color: var(--bos-white);
    position: relative;
    z-index: 1;
}

.bos-page-hero p {
    color: var(--bos-accent-light);
    position: relative;
    z-index: 1;
    font-size: 1.15rem;
}

/* ========================================
   SECTIONS
   ======================================== */
.bos-section {
    padding: var(--bos-section-padding) 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.bos-section-alt {
    background: var(--bos-white);
}

.bos-section-dark {
    background: var(--bos-secondary);
    color: var(--bos-white);
}

.bos-section-dark h2,
.bos-section-dark h3 {
    color: var(--bos-white);
}

.bos-section-dark p {
    color: rgba(255,255,255,0.85);
}

.bos-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.bos-section-header h2 {
    margin-bottom: 16px;
}

.bos-section-header p {
    color: var(--bos-text-light);
    font-size: 1.1rem;
}

.bos-divider {
    width: 60px;
    height: 3px;
    background: var(--bos-primary);
    margin: 16px auto;
    border-radius: 2px;
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.bos-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.bos-service-card {
    background: var(--bos-white);
    border-radius: var(--bos-card-radius);
    overflow: hidden;
    box-shadow: var(--bos-shadow-sm);
    transition: all var(--bos-transition);
    position: relative;
}

.bos-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--bos-shadow-hover);
}

.bos-service-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.bos-service-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, rgba(255,255,255,0.9));
}

.bos-service-card-body {
    padding: 28px;
}

.bos-service-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.bos-service-card-body p {
    color: var(--bos-text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.bos-service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--bos-primary);
    font-size: 0.95rem;
}

.bos-service-card-link:hover {
    gap: 10px;
}

/* Icon Cards */
.bos-icon-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.bos-icon-card {
    background: var(--bos-white);
    border-radius: var(--bos-card-radius);
    padding: 32px;
    text-align: center;
    box-shadow: var(--bos-shadow-sm);
    transition: all var(--bos-transition);
    border: 1px solid var(--bos-border);
}

.bos-icon-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bos-shadow-md);
    border-color: var(--bos-primary-light);
}

.bos-icon-card .icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--bos-primary), var(--bos-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--bos-white);
}

.bos-icon-card h4 {
    margin-bottom: 10px;
}

.bos-icon-card p {
    color: var(--bos-text-light);
    font-size: 0.93rem;
}

/* ========================================
   FAQ / AEO SECTIONS
   ======================================== */
.bos-faq-section {
    background: var(--bos-cream-dark);
    padding: var(--bos-section-padding) 24px;
}

.bos-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.bos-faq-item {
    background: var(--bos-white);
    border-radius: var(--bos-card-radius);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--bos-border);
    transition: border-color var(--bos-transition);
}

.bos-faq-item:hover {
    border-color: var(--bos-primary-light);
}

button.bos-faq-question,
.bos-faq-list button.bos-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-family: var(--bos-font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bos-secondary) !important;
    transition: all var(--bos-transition);
    background: var(--bos-cream) !important;
    border: none !important;
    border-bottom: 1px solid var(--bos-border) !important;
    border-radius: 0 !important;
    width: 100%;
    text-align: left;
    line-height: 1.5;
    margin: 0;
    box-shadow: none !important;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

button.bos-faq-question:hover,
.bos-faq-list button.bos-faq-question:hover {
    color: var(--bos-primary) !important;
    background: var(--bos-cream-dark) !important;
}

.bos-faq-item.active button.bos-faq-question {
    background: var(--bos-secondary) !important;
    color: var(--bos-white) !important;
    border-bottom-color: var(--bos-secondary) !important;
}

.bos-faq-item.active button.bos-faq-question .icon {
    color: var(--bos-accent);
}

button.bos-faq-question .icon {
    font-size: 1.4rem;
    transition: transform var(--bos-transition);
    flex-shrink: 0;
    margin-left: 16px;
    color: var(--bos-primary);
}

.bos-faq-item.active button.bos-faq-question .icon {
    transform: rotate(45deg);
}

.bos-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--bos-transition-slow);
}

.bos-faq-item.active .bos-faq-answer {
    max-height: 500px;
}

.bos-faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--bos-text-light);
    line-height: 1.7;
}

/* ========================================
   STEP / PROCESS SECTIONS
   ======================================== */
.bos-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.bos-step {
    text-align: center;
    position: relative;
}

.bos-step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--bos-primary), var(--bos-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: var(--bos-font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bos-white);
}

.bos-step h4 {
    margin-bottom: 8px;
}

.bos-step p {
    color: var(--bos-text-light);
    font-size: 0.93rem;
}

/* ========================================
   FEATURES / BENEFITS
   ======================================== */
.bos-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.bos-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.bos-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--bos-cream-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bos-primary);
}

.bos-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.bos-feature p {
    color: var(--bos-text-light);
    font-size: 0.93rem;
    margin: 0;
}

/* ========================================
   CTA SECTIONS
   ======================================== */
.bos-cta-section {
    background: linear-gradient(135deg, var(--bos-secondary) 0%, #2A1D14 100%);
    padding: 60px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bos-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: var(--bos-primary);
    border-radius: 50%;
    opacity: 0.08;
}

.bos-cta-section h2 {
    color: var(--bos-white);
    margin-bottom: 16px;
    position: relative;
}

.bos-cta-section p {
    color: var(--bos-accent-light);
    max-width: 600px;
    margin: 0 auto 28px;
    position: relative;
}

.bos-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.bos-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
}

.bos-contact-form input,
.bos-contact-form textarea,
.bos-contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--bos-border);
    border-radius: var(--bos-btn-radius);
    font-family: var(--bos-font-body);
    font-size: 1rem;
    color: var(--bos-text);
    background: var(--bos-white);
    transition: border-color var(--bos-transition), box-shadow var(--bos-transition);
    margin-bottom: 16px;
}

.bos-contact-form input:focus,
.bos-contact-form textarea:focus,
.bos-contact-form select:focus {
    outline: none;
    border-color: var(--bos-primary);
    box-shadow: 0 0 0 3px rgba(139, 105, 20, 0.15);
}

.bos-contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.bos-contact-info-card {
    background: var(--bos-white);
    border-radius: var(--bos-card-radius);
    padding: 28px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--bos-shadow-sm);
}

.bos-contact-info-card .icon {
    width: 48px;
    height: 48px;
    background: var(--bos-cream-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--bos-primary);
    flex-shrink: 0;
}

.bos-contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.bos-contact-info-card p {
    color: var(--bos-text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.bosvena-footer {
    background: var(--bos-secondary);
    color: rgba(255,255,255,0.8);
    padding: 60px 24px 24px;
}

.bosvena-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.bosvena-footer h4 {
    color: var(--bos-white);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.bosvena-footer p {
    color: rgba(255,255,255,0.7);
    font-size: 0.93rem;
    line-height: 1.7;
}

.bosvena-footer a {
    color: rgba(255,255,255,0.7);
    transition: color var(--bos-transition);
    font-size: 0.93rem;
}

.bosvena-footer a:hover {
    color: var(--bos-accent);
}

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

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

.bosvena-footer-bottom {
    max-width: 1280px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.bosvena-footer-bottom p {
    font-size: 0.88rem;
    margin: 0;
}

/* ========================================
   GDPR COOKIE NOTICE
   ======================================== */
.bos-cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bos-secondary);
    color: var(--bos-white);
    padding: 20px 24px;
    z-index: 99999;
    transform: translateY(100%);
    transition: transform var(--bos-transition-slow);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.bos-cookie-notice.show {
    transform: translateY(0);
}

.bos-cookie-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.bos-cookie-inner p {
    color: rgba(255,255,255,0.85);
    font-size: 0.93rem;
    margin: 0;
    flex: 1;
}

.bos-cookie-inner a {
    color: var(--bos-accent);
    text-decoration: underline;
}

.bos-cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.bos-cookie-accept {
    background: var(--bos-primary);
    color: var(--bos-white);
    border: none;
    padding: 10px 24px;
    border-radius: var(--bos-btn-radius);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--bos-transition);
}

.bos-cookie-accept:hover {
    background: var(--bos-primary-dark);
}

.bos-cookie-decline {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 24px;
    border-radius: var(--bos-btn-radius);
    cursor: pointer;
    transition: all var(--bos-transition);
}

.bos-cookie-decline:hover {
    border-color: var(--bos-white);
    color: var(--bos-white);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.bos-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.bos-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.bos-animate-delay-1 { transition-delay: 0.1s; }
.bos-animate-delay-2 { transition-delay: 0.2s; }
.bos-animate-delay-3 { transition-delay: 0.3s; }
.bos-animate-delay-4 { transition-delay: 0.4s; }
.bos-animate-delay-5 { transition-delay: 0.5s; }
.bos-animate-delay-6 { transition-delay: 0.6s; }

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.bos-whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all var(--bos-transition);
    text-decoration: none;
}

.bos-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    color: white;
}

/* ========================================
   BREADCRUMBS
   ======================================== */
.bos-breadcrumbs {
    padding: 16px 24px;
    max-width: 1280px;
    margin: 0 auto;
    font-size: 0.88rem;
    color: var(--bos-text-muted);
}

.bos-breadcrumbs a {
    color: var(--bos-text-muted);
}

.bos-breadcrumbs a:hover {
    color: var(--bos-primary);
}

.bos-breadcrumbs .separator {
    margin: 0 8px;
    color: var(--bos-border);
}

/* ========================================
   IMAGE CONTENT SECTIONS
   ======================================== */
.bos-content-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.bos-content-image.reverse {
    direction: rtl;
}

.bos-content-image.reverse > * {
    direction: ltr;
}

.bos-content-image img,
.bos-content-image .bos-img-placeholder {
    border-radius: var(--bos-card-radius);
    box-shadow: var(--bos-shadow-md);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.bos-img-placeholder {
    background: linear-gradient(135deg, var(--bos-cream-dark), var(--bos-border));
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--bos-font-heading);
    color: var(--bos-text-muted);
    font-size: 1.1rem;
}

/* ========================================
   AUCTION SPECIFIC
   ======================================== */
.bos-auction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.bos-auction-card {
    background: var(--bos-white);
    border-radius: var(--bos-card-radius);
    overflow: hidden;
    box-shadow: var(--bos-shadow-sm);
    transition: all var(--bos-transition);
    border: 1px solid var(--bos-border);
}

.bos-auction-card:hover {
    box-shadow: var(--bos-shadow-md);
    border-color: var(--bos-primary-light);
}

/* ========================================
   GOOGLE MAP
   ======================================== */
.bos-map-container {
    border-radius: var(--bos-card-radius);
    overflow: hidden;
    box-shadow: var(--bos-shadow-md);
    margin-top: 40px;
}

.bos-map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    :root {
        --bos-section-padding: 60px;
    }

    .bosvena-footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --bos-section-padding: 48px;
    }

    .bosvena-menu-toggle {
        display: flex;
    }

    .bosvena-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bos-white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--bos-shadow-lg);
        transform: translateY(-120%);
        transition: transform var(--bos-transition);
        z-index: 9998;
    }

    .bosvena-nav.open {
        transform: translateY(0);
    }

    /* Mobile dropdown */
    .bosvena-dropdown {
        width: 100%;
    }

    .bosvena-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 8px 0;
    }

    .bosvena-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--bos-primary);
        border-radius: 0;
        min-width: unset;
        padding: 4px 0 4px 12px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .bosvena-dropdown-menu::before,
    .bosvena-dropdown-menu::after {
        display: none;
    }

    .bosvena-dropdown.open .bosvena-dropdown-menu {
        max-height: 300px;
        padding: 8px 0 8px 12px;
        transform: none;
    }

    .bosvena-dropdown-menu a:hover {
        padding-left: 20px !important;
    }

    .bos-hero {
        min-height: 60vh;
    }

    .bos-content-image {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bos-content-image.reverse {
        direction: ltr;
    }

    .bos-contact-grid {
        grid-template-columns: 1fr;
    }

    .bosvena-footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bosvena-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .bos-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .bos-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .bos-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .bos-steps {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ELEMENTOR OVERRIDES
   ======================================== */
.elementor-page .bosvena-header {
    display: block;
}

.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1280px;
}

.elementor-widget-heading .elementor-heading-title {
    font-family: var(--bos-font-heading);
}

.elementor-widget-text-editor {
    font-family: var(--bos-font-body);
}

/* Elementor Accordion FAQ */
.elementor-widget-accordion .elementor-accordion-item {
    border: 1px solid var(--bos-border) !important;
    border-radius: var(--bos-card-radius) !important;
    margin-bottom: 12px !important;
    overflow: hidden;
}

.elementor-widget-accordion .elementor-tab-title {
    font-family: var(--bos-font-heading) !important;
    color: var(--bos-secondary) !important;
    padding: 18px 24px !important;
}

.elementor-widget-accordion .elementor-tab-content {
    padding: 0 24px 20px !important;
    color: var(--bos-text-light) !important;
}

/* Elementor Icon Box */
.elementor-widget-icon-box .elementor-icon {
    background: linear-gradient(135deg, var(--bos-primary), var(--bos-accent)) !important;
    color: var(--bos-white) !important;
    border-radius: 50% !important;
}

/* ========================================
   FULL-WIDTH CONTENT OVERRIDES
   ======================================== */
.site-main {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden;
}

.site-main > .bos-hero,
.site-main > .bos-page-hero,
.site-main > .bos-cta-section,
.site-main > .bos-faq-section,
.site-main > div[style*="background"] {
    width: 100%;
}

/* Override any Hello Elementor content width restrictions */
.page .site-main,
.home .site-main {
    width: 100%;
    max-width: 100%;
}

/* Ensure proper spacing for page content */
.site-main > *:first-child {
    margin-top: 0;
}

.site-main p:empty {
    display: none;
}

/* ========================================
   UCO AUCTIONS PLUGIN OVERRIDES
   ======================================== */
/* Hide the UCO plugin's own header/hero on auction pages */
.bp_auctions .bp-header.bp-header-simple {
    display: none !important;
}

/* Remove empty content area on auction pages */
.bp_auctions .bp-content.bp-content_archive .bp-content__text:empty,
.bp_auctions .bp-content.bp-content_archive .bp-content__text {
    display: none !important;
}

/* Add spacing after our header on auction pages */
.bp_auctions .bp-container {
    padding-top: 24px;
}

/* Style the auction list container */
.bp_auctions .bp-container-fluid {
    max-width: 100%;
}

/* Auction cards - brand styling */
.bp_auctions .bp-gallery-item,
.bp_auctions .bp-auction-card {
    border-radius: var(--bos-card-radius);
    border: 1px solid var(--bos-border);
    overflow: hidden;
    transition: all var(--bos-transition);
}

.bp_auctions .bp-gallery-item:hover,
.bp_auctions .bp-auction-card:hover {
    box-shadow: var(--bos-shadow-md);
    transform: translateY(-2px);
}

/* UCO plugin buttons - match brand */
.bp_auctions .bp-btn,
.bp_auctions .bp-btn-primary {
    font-family: var(--bos-font-body) !important;
    border-radius: var(--bos-btn-radius) !important;
}

/* Hide UCO plugin's own header/footer nav */
.bp_auctions .bp-header__nav,
.bp_auctions .bp-footer {
    display: none !important;
}
