/* ==========================================
   G.O.A.T. GROUP - AI ENHANCEMENT LAYER CSS
   ========================================== */

/* 1. Global CSS Transitions & Custom Keyframes */
@keyframes ai-pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 135, 30, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(232, 135, 30, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(232, 135, 30, 0);
    }
}

@keyframes ai-shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes ai-fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes ai-cursor-blink {
    50% { border-color: transparent; }
}

@keyframes ai-sparkle {
    0% { transform: scale(0) rotate(0deg); opacity: 1; }
    100% { transform: scale(1) rotate(180deg); opacity: 0; }
}

/* Stagger delay utility classes */
.ai-stagger-card {
    opacity: 0;
    animation: ai-fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* 2. Brand-Consistent Hover Elevate on Cards */
.top_pro_ctr, .recommend_ctr_pro, .hot_ctr_pro, .accessory-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease !important;
}

.top_pro_ctr:hover, .recommend_ctr_pro:hover, .hot_ctr_pro:hover, .accessory-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 20px rgba(23, 25, 29, 0.08) !important;
    border-color: rgba(232, 135, 30, 0.4) !important;
}

/* 3. AI Smart Badging & Shimmer Skeletons */
.ai-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #17191d 0%, #22252b 100%);
    border: 1.5px solid #e8871e;
    color: #e8871e;
    font-family: bold, sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 3;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ai-badge i {
    animation: ai-pulse-gold 2s infinite;
    border-radius: 50%;
}

.ai-shimmer-skeleton {
    background: linear-gradient(90deg, #f3f3f3 25%, #e8871e 50%, #f3f3f3 75%);
    background-size: 200% 100%;
    animation: ai-shimmer 1.5s infinite linear;
}

/* 4. Natural AI Search suggestions */
.ai-search-suggestions {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e8871e;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 99;
    padding: 15px;
    display: none;
    animation: ai-fade-up 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ai-search-suggestions h5 {
    margin: 0 0 10px 0;
    font-family: medium, sans-serif;
    color: #17191d;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-search-suggestions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ai-suggestion-pill {
    background-color: #f7f9f8;
    border: 1.5px solid #eaeaea;
    color: #555;
    font-family: medium, sans-serif;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ai-suggestion-pill:hover {
    background-color: #17191d;
    color: white;
    border-color: #17191d;
}

/* 5. Floating AI Assistant Chat Widget */
#ai-floating-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #17191d;
    border: 2.5px solid #e8871e;
    color: #e8871e;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#ai-floating-widget:hover {
    transform: scale(1.1) rotate(5deg);
}

.ai-widget-pulse {
    position: absolute;
    top: -2.5px;
    left: -2.5px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2.5px solid #e8871e;
    animation: ai-pulse-gold 2s infinite;
    pointer-events: none;
}

.ai-widget-icon {
    font-size: 22px;
}

#ai-chat-drawer {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 520px;
    background-color: white;
    border: 2px solid #17191d;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-drawer-closed {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    pointer-events: none;
}

.ai-drawer-opened {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.ai-drawer-header {
    background-color: #17191d;
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #e8871e;
}

.ai-drawer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #22252b;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e8871e;
    padding: 4px;
}

.ai-drawer-avatar img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.ai-drawer-title-block {
    flex-grow: 1;
    margin-left: 12px;
}

.ai-drawer-title-block h4 {
    margin: 0;
    font-family: bold, sans-serif;
    font-size: 14px;
    color: #e8871e;
}

.ai-drawer-status {
    font-family: light, sans-serif;
    font-size: 10px;
    color: #e8871e;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ai-status-dot {
    width: 6px;
    height: 6px;
    background-color: #e8871e;
    border-radius: 50%;
    display: inline-block;
}

.ai-drawer-close {
    background: transparent;
    border: none;
    color: #e8871e;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s;
}

.ai-drawer-close:hover {
    color: white;
}

.ai-drawer-body {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #fcfcfc;
}

.ai-msg {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 12px;
    font-family: medium, sans-serif;
    font-size: 13px;
    line-height: 1.5;
}

.ai-msg.bot {
    align-self: flex-start;
    background-color: #f1f4f2;
    color: #333;
    border-bottom-left-radius: 2px;
    border-left: 3px solid #17191d;
}

.ai-msg.user {
    align-self: flex-end;
    background-color: #17191d;
    color: white;
    border-bottom-right-radius: 2px;
}

.ai-drawer-suggestions {
    display: flex;
    gap: 6px;
    padding: 10px 15px;
    background-color: #f7f7f7;
    overflow-x: auto;
    border-top: 1px solid #eee;
}

.ai-drawer-suggestions span {
    white-space: nowrap;
    background-color: white;
    border: 1px solid #ddd;
    color: #555;
    font-family: light, sans-serif;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.ai-drawer-suggestions span:hover {
    border-color: #17191d;
    color: #17191d;
}

.ai-drawer-footer {
    display: flex;
    padding: 12px 15px;
    border-top: 1px solid #eee;
    background-color: white;
    gap: 8px;
}

#ai-drawer-input {
    flex-grow: 1;
    border: 1.5px solid #eaeaea;
    border-radius: 6px;
    padding: 10px 14px;
    font-family: medium, sans-serif;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
}

#ai-drawer-input:focus {
    border-color: #e8871e;
    box-shadow: 0 0 5px rgba(232, 135, 30, 0.3);
}

#ai-drawer-send {
    background-color: #e8871e;
    color: #17191d;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    transition: all 0.2s;
}

#ai-drawer-send:hover {
    background-color: #17191d;
    color: white;
}

/* 6. AI Summary Module on Product Page */
.ai-summary-module {
    margin: 30px 2%;
    background-color: #f9fbf9;
    border: 1px solid #e8871e;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(23, 25, 29, 0.03);
    position: relative;
    overflow: hidden;
}

.ai-summary-header {
    font-family: bold, sans-serif;
    font-size: 14px;
    color: #17191d;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.ai-summary-header i {
    color: #e8871e;
}

#ai-summary-text {
    font-family: light, sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

#ai-summary-text.collapsed {
    max-height: 55px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#ai-summary-text.expanded {
    max-height: 800px;
}

#ai-summary-toggle {
    background: transparent;
    border: none;
    color: #17191d;
    font-family: bold, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 10px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

#ai-summary-toggle:hover {
    color: #e8871e;
}

/* 7. Collapsible AI Choice-Assistant Sidebar */
#btn-ai-choice-trigger {
    background-color: transparent;
    border: 2px solid #e8871e;
    color: #e8871e;
    font-family: bold, sans-serif;
    font-size: 12px;
    padding: 12px 20px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    margin-top: 15px;
}

#btn-ai-choice-trigger:hover {
    background-color: #e8871e;
    color: #17191d;
}

#ai-choice-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 440px;
    height: 100vh;
    background-color: white;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-sidebar-closed {
    transform: translateX(100%);
}

.ai-sidebar-opened {
    transform: translateX(0);
}

.ai-sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.ai-sidebar-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.ai-sidebar-header {
    background-color: #17191d;
    padding: 24px;
    color: white;
    border-bottom: 3px solid #e8871e;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-sidebar-header h3 {
    margin: 0;
    font-family: bold, sans-serif;
    font-size: 16px;
    color: #e8871e;
    letter-spacing: 1px;
}

.ai-sidebar-body {
    flex-grow: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ai-sidebar-section {
    border-bottom: 1px solid #f0f3f1;
    padding-bottom: 20px;
}

.ai-sidebar-section:last-child {
    border-bottom: none;
}

.ai-sidebar-section h4 {
    margin: 0 0 12px 0;
    font-family: bold, sans-serif;
    font-size: 13px;
    color: #17191d;
    text-transform: uppercase;
}

/* Sizing tool styles */
.ai-size-calculator {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.ai-size-calculator input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: medium, sans-serif;
    font-size: 13px;
    outline: none;
}

#ai-size-result {
    font-family: medium, sans-serif;
    font-size: 13px;
    color: #333;
    background-color: #f7faf8;
    padding: 12px;
    border-radius: 4px;
    border-left: 3px solid #e8871e;
}

/* Compatible Accessory styles */
.ai-acc-card {
    display: flex;
    align-items: center;
    border: 1px solid #f0f3f1;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fafbfc;
    transition: border-color 0.2s;
}

.ai-acc-card:hover {
    border-color: #e8871e;
}

.ai-acc-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background-color: white;
    border-radius: 4px;
}

.ai-acc-info {
    flex-grow: 1;
    margin-left: 12px;
}

.ai-acc-info h5 {
    margin: 0 0 3px 0;
    font-family: bold, sans-serif;
    font-size: 12px;
    color: #17191d;
}

.ai-acc-info p {
    margin: 0;
    font-family: medium, sans-serif;
    font-size: 11px;
    color: #666;
}

.ai-acc-link {
    color: #e8871e;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.2s;
    padding: 5px;
}

.ai-acc-link:hover {
    color: #17191d;
}

/* 8. Success Checkout particle burst container */
#ai-particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 999999;
}

.ai-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #e8871e;
    border-radius: 50%;
    animation: ai-sparkle 0.8s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

/* 9. Smart filtering sidebar styles */
.ai-smart-filter-row {
    background-color: #f7faf8;
    border: 1px dashed #e8871e;
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ai-smart-filter-info h5 {
    margin: 0 0 3px 0;
    font-family: bold, sans-serif;
    font-size: 12px;
    color: #17191d;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ai-smart-filter-info h5 i {
    color: #e8871e;
}

.ai-smart-filter-info p {
    margin: 0;
    font-family: light, sans-serif;
    font-size: 10px;
    color: #666;
}

/* Switch styling */
.ai-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
}

.ai-switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.ai-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 22px;
}

.ai-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.ai-switch input:checked + .ai-slider {
    background-color: #17191d;
}

.ai-switch input:checked + .ai-slider:before {
    transform: translateX(18px);
    background-color: #e8871e;
}

/* Glowing class for highlighted items */
.ai-highlight-glow {
    border-color: #e8871e !important;
    box-shadow: 0 0 15px rgba(232, 135, 30, 0.4) !important;
    animation: ai-pulse-gold 2s infinite;
}

@media only screen and (max-width: 600px) {
    #ai-chat-drawer {
        width: calc(100% - 30px);
        right: 15px;
        left: 15px;
        bottom: 85px;
        height: 420px;
    }
    #ai-floating-widget {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    .ai-widget-pulse {
        width: 50px;
        height: 50px;
    }
    #ai-choice-sidebar {
        width: 100%;
    }
}

/* ==========================================================
   6. HOMEPAGE UPGRADE - ANIMATION & AI DISCOVERY LAYER
   ========================================================== */

/* Hero Slider Floating & Noise Overlay */
.slider {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(232, 135, 30, 0.15) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    transition: border-color 0.4s ease, box-shadow 0.4s ease !important;
}

.slider:hover {
    border-color: rgba(232, 135, 30, 0.3) !important;
    box-shadow: 0 15px 40px rgba(23, 25, 29, 0.25) !important;
}

/* Slides and layout elements are styled static for perfect stability */

#chat_nagy_ctr {
    position: relative;
}

/* Sticky Navigation & Header Overrides */
#shop_menu_bg {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #17191d;
    transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: padding, background-color, backdrop-filter, box-shadow;
}

#shop_menu_bg.navbar-shrunk {
    background-color: rgba(23, 25, 29, 0.85) !important;
    backdrop-filter: blur(16px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#shop_menu_bg.navbar-shrunk #shop_menu {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

#shop_menu_bg.navbar-shrunk #menu_logo_shop {
    height: 52px !important;
}

/* Rounded focus-glow search input */
#shop_s {
    display: inline-flex !important;
    align-items: center !important;
    position: relative !important;
    background: #ffffff !important;
    border-radius: 24px !important;
    border: 1.5px solid rgba(232, 135, 30, 0.3) !important;
    padding: 2px 4px 2px 16px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    height: 38px !important;
    box-sizing: border-box !important;
}

#shop_s:focus-within {
    border-color: #e8871e !important;
    box-shadow: 0 0 15px rgba(232, 135, 30, 0.3), 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

#shop_s input {
    width: 200px !important;
    border: none !important;
    background: transparent !important;
    outline: none !important;
    padding: 8px 0 !important;
    font-family: medium, sans-serif !important;
    font-size: 13px !important;
    color: #333 !important;
    box-shadow: none !important;
}

#search_shop_btn {
    background: #e8871e !important;
    border: none !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    margin-left: 10px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    margin-top: 0 !important;
}

#search_shop_btn:hover {
    background: #17191d !important;
}

#search_shop_btn:hover i {
    color: #e8871e !important;
}

/* Elegant ambient-drifting overlay on Hero section */
#chat_img_ctr::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: radial-gradient(circle at 50% 50%, rgba(232, 135, 30, 0.06) 0%, transparent 80%);
    opacity: 0.8;
    z-index: 2;
    mix-blend-mode: color-dodge;
    animation: ambient-drift 15s ease-in-out infinite;
}

@keyframes ambient-drift {
    0% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
    100% { opacity: 0.5; transform: scale(1); }
}

/* Subtle Hero image zoom breathing motion */
@keyframes hero-breathing {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.slides img {
    animation: hero-breathing 14s ease-in-out infinite !important;
    will-change: transform !important;
}

/* Anti-jitter rendering enhancement on GPU transforms */
.top_btn, .top_btn_new, .buy_btn, .btn-add-to-cart {
    will-change: transform !important;
    backface-visibility: hidden !important;
    -webkit-font-smoothing: subpixel-antialiased !important;
}


/* Product Card Image Zoom */
.top_pro_ctr img, .recommend_ctr_pro img, .hot_ctr_pro img {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.top_pro_ctr:hover img, .recommend_ctr_pro:hover img, .hot_ctr_pro:hover img {
    transform: scale(1.04) !important;
}

/* CTA Microinteractions - Non-centered buttons */
.buy_btn, .btn-add-to-cart, #btn-ai-generate, #btn-ai-discovery {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease !important;
}

.buy_btn:hover, .btn-add-to-cart:hover, #btn-ai-generate:hover, #btn-ai-discovery:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(232, 135, 30, 0.22) !important;
}

.buy_btn:active, .btn-add-to-cart:active, #btn-ai-generate:active, #btn-ai-discovery:active {
    transform: translateY(1px) scale(0.97) !important;
    box-shadow: 0 2px 5px rgba(232, 135, 30, 0.08) !important;
}

/* CTA Microinteractions - Centered buttons (preserving horizontally centered translate) */
.top_btn, .top_btn_new, .pro_chat_btn {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease !important;
}

.top_btn:hover, .top_btn_new:hover, .pro_chat_btn:hover {
    transform: translateX(-50%) translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(232, 135, 30, 0.22) !important;
}

.top_btn:active, .top_btn_new:active, .pro_chat_btn:active {
    transform: translateX(-50%) translateY(1px) scale(0.97) !important;
    box-shadow: 0 2px 5px rgba(232, 135, 30, 0.08) !important;
}

/* Cart counter bubble update keyframe */
@keyframes ai-counter-bounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.35); }
    100% { transform: scale(1); }
}

.product_dot {
    animation: ai-counter-bounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Site-wide Scroll Reveal Transition classes */
.ai-scroll-hidden {
    opacity: 0 !important;
    transform: translateY(15px) !important;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform, opacity;
}

.ai-scroll-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.ai-stagger-card {
    opacity: 0;
    animation: ai-fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: calc(var(--stagger-index, 0) * 0.08s);
}

/* AI Discovery Search Module UI */
.ai-discovery-container {
    background: linear-gradient(135deg, #22252b 0%, #17191d 100%);
    border: 1px solid rgba(232, 135, 30, 0.25);
    border-radius: 12px;
    padding: 32px;
    margin: 40px auto;
    width: 100%;
    box-shadow: 0 20px 40px rgba(23, 25, 29, 0.12);
    color: white;
    box-sizing: border-box;
}

.ai-discovery-header {
    text-align: center;
    margin-bottom: 25px;
}

.ai-discovery-header h3 {
    font-family: bold, sans-serif;
    font-size: 22px;
    color: #e8871e;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 8px 0;
}

.ai-discovery-header p {
    font-family: light, sans-serif;
    font-size: 13px;
    color: #e8871e;
    margin: 0;
}

.ai-discovery-search-row {
    max-width: 650px;
    margin: 0 auto 20px auto;
}

.ai-discovery-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(232, 135, 30, 0.2);
    border-radius: 30px;
    padding: 4px 6px 4px 18px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.ai-discovery-input-wrapper:focus-within {
    border-color: #e8871e;
    box-shadow: 0 0 15px rgba(232, 135, 30, 0.3);
    background: rgba(255, 255, 255, 0.09);
}

.ai-mic-icon {
    color: #e8871e;
    font-size: 15px;
    margin-right: 12px;
    animation: ai-float 3s ease-in-out infinite;
}

#ai-discovery-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: white;
    font-family: medium, sans-serif;
    font-size: 13.5px;
    padding: 10px 0;
}

#ai-discovery-input::placeholder {
    color: #9aa793;
}

.btn-ai-discovery-search {
    background-color: #e8871e;
    color: #17191d;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-ai-discovery-search:hover {
    background-color: #e8871e;
    transform: scale(1.05);
}

.ai-discovery-suggestions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 750px;
    margin: 0 auto;
}

.ai-discovery-pill {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(232, 135, 30, 0.12);
    color: #e8871e;
    font-family: medium, sans-serif;
    font-size: 11.5px;
    padding: 7px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-discovery-pill:hover {
    background-color: #e8871e;
    color: #17191d;
    border-color: #e8871e;
    transform: translateY(-2px);
}

.ai-discovery-results-box {
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.2);
    border: 1.5px solid rgba(232, 135, 30, 0.15);
    border-radius: 6px;
    padding: 25px;
    min-height: 100px;
    animation: ai-fade-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ai-discovery-text-body {
    font-family: light, sans-serif;
    font-size: 13.5px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.ai-discovery-text-body strong {
    font-family: bold, sans-serif;
    color: #e8871e;
}

.ai-discovery-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

/* Shimmer Skeleton Loaders */
.ai-discovery-skeleton {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skeleton-line {
    height: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    width: 100%;
}

.skeleton-line.shimmer {
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(232, 135, 30,0.12) 50%, rgba(255,255,255,0.04) 75%);
    background-size: 200% 100%;
    animation: ai-shimmer 1.5s infinite linear;
}

.skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.skeleton-card {
    height: 180px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border: 1.5px solid rgba(232, 135, 30, 0.05);
}

.skeleton-card.shimmer {
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(232, 135, 30,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: ai-shimmer 1.5s infinite linear;
}

.ai-discovery-results-card {
    background-color: white;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    color: black;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: 1.5px solid transparent;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.ai-discovery-results-card:hover {
    transform: translateY(-6px);
    border-color: #e8871e;
}

.ai-discovery-results-card img {
    height: 110px;
    object-fit: contain;
    margin-bottom: 10px;
}

.ai-discovery-results-card h5 {
    font-family: bold, sans-serif;
    font-size: 13px;
    margin: 0 0 6px 0;
    color: #17191d;
}

.ai-discovery-results-card p {
    font-family: medium, sans-serif;
    font-size: 12px;
    color: #e8871e;
    margin: 0 0 12px 0;
}

.ai-discovery-results-card .btn-view {
    background-color: #17191d;
    color: white;
    text-transform: uppercase;
    font-family: bold, sans-serif;
    font-size: 10px;
    padding: 6px 15px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.ai-discovery-results-card .btn-view:hover {
    background-color: #22252b;
}

/* ==========================================================
   10. CINEMATIC HERO SLIDER - 100% RESPONSIVE FIXES
   ========================================================== */
#chat_img_ctr {
    max-width: none !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 0 !important;
    box-sizing: border-box !important;
}

#chat_img {
    max-width: none !important;
    width: 100% !important;
    height: min(560px, 33.4vw) !important;
    aspect-ratio: auto !important;
    background: #121413 !important;
    position: relative !important;
    overflow: hidden !important;
    margin: auto !important;
    border-radius: 0 !important;
}

.slides {
    display: flex !important;
    max-width: none !important;
    width: 100% !important;
}

.slide {
    max-width: none !important;
    width: 100% !important;
    flex: 0 0 100% !important;
    box-sizing: border-box !important;
}

.slides img {
    width: 100% !important;
    height: min(560px, 33.4vw) !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 0 !important;
}

/* Ensure mobile rules match the aspect ratio but remain block containers */
@media only screen and (max-width: 600px) {
    #chat_img_ctr {
        width: 100% !important;
        display: block !important;
        position: relative !important;
        padding: 0 !important;
    }
    
    #chat_img {
        height: auto !important;
        aspect-ratio: 700 / 400 !important;
    }

    .slides img {
        height: auto !important;
        aspect-ratio: 700 / 400 !important;
    }
}

/* ==========================================================
   11. PREMIUM BRANDS SHOWCASE SECTION
   ========================================================== */
.brands-showcase-section {
    margin: 50px auto 20px auto !important;
    padding: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center;
}

.brands-showcase-section h3 {
    font-family: bold, sans-serif !important;
    font-size: 20px !important;
    color: #17191d !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin: 0 0 10px 0 !important;
}

/* The tiles are built from the catalogue now, so the count is not fixed at the
   seven that used to be typed into the markup. auto-fit lays out whatever
   arrives without leaving a hole in the row. */
.brands-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 15px !important;
    margin-top: 30px !important;
}

.brand-item {
    background: #ffffff !important;
    border: 1.5px solid #f0f3f1 !important;
    border-radius: 8px !important;
    height: 90px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px !important;
    box-sizing: border-box !important;
    /* Each tile now opens that brand's results, so it reads as a link. It used
       to be a dead <div> that lifted on hover and did nothing when clicked. */
    cursor: pointer !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02) !important;
}

/* Premium cursor-only hover effects to prevent sticky tap coloring on touch screens */
@media (hover: hover) {
    .brand-item:hover {
        transform: translateY(-4px) !important;
        border-color: #e8871e !important;
        box-shadow: 0 10px 25px rgba(23, 25, 29, 0.06), 0 0 15px rgba(232, 135, 30, 0.2) !important;
    }

    /* The per-brand hover colours that used to sit here were bike marques
       inherited from the template this shop came from. No supplement brand ever
       carried those classes, so none of the rules could fire. */
    .brand-item:hover .brand-logo-text {
        color: #17191d !important;
    }
}

.brand-logo-text {
    font-size: 14px;
    letter-spacing: 1px;
    color: #888888;
    transition: all 0.3s ease !important;
    user-select: none;
    text-align: center;
}

/* Seven per-marque typefaces stood here, one per hardcoded bike brand from the
   template this shop was lifted from. Brand names are drawn from the catalogue
   now and every tile uses .brand-logo-text, so a rule per hardcoded marque
   could not survive the change even in principle. */

/* Responsiveness for Brands Showcase. auto-fit already reflows on its own; the
   narrow breakpoint only stops a long name like APPLIED NUTRITION from forcing
   a tile wider than a phone. */
@media only screen and (max-width: 500px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .brand-logo-text {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
}

/* ==========================================================
   12. PREMIUM REGISTRATION MODAL STYLES
   ========================================================== */
#reg_ctr {
    background: rgba(23, 25, 29, 0.45) !important; /* Emerald translucent wash */
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Center card override */
#reg_ctr #reg_form_ctr {
    width: 680px !important;
    max-width: 92% !important;
    background: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid rgba(232, 135, 30, 0.35) !important;
    border-radius: 20px !important;
    box-shadow: 0 30px 70px rgba(23, 25, 29, 0.15), 
                0 0 40px rgba(232, 135, 30, 0.05) !important;
    padding: 45px 50px 40px 50px !important;
    margin: 4vh auto !important;
    position: relative !important;
    box-sizing: border-box !important;
    overflow-y: auto !important;
    max-height: 92vh !important;
    animation: premium-modal-entrance 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes premium-modal-entrance {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Close button style */
.premium-modal-close {
    position: absolute !important;
    top: 25px !important;
    right: 25px !important;
    width: 38px !important;
    height: 38px !important;
    background: #f1f4f2 !important;
    border: none !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    color: #17191d !important;
    font-size: 16px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 10 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
}

.premium-modal-close:hover {
    background: #17191d !important;
    color: #e8871e !important;
    transform: rotate(90deg) scale(1.08) !important;
}

/* Header style */
.premium-reg-header {
    text-align: left !important;
    margin-bottom: 30px !important;
    border-bottom: 1.5px solid #eaeaea !important;
    padding-bottom: 20px !important;
}

.premium-reg-header h1, .premium-reg-header h2 {
    font-family: bold, sans-serif !important;
    font-size: 26px !important;
    color: #17191d !important;
    margin: 0 0 8px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.premium-reg-subtitle {
    font-family: light, sans-serif !important;
    font-size: 13.5px !important;
    color: #666666 !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

.required-star {
    color: #df4437 !important;
    font-weight: bold !important;
    margin-left: 2px;
}

/* Form structure */
.premium-reg-form {
    display: block !important;
}

.premium-form-section {
    margin-bottom: 35px !important;
    text-align: left !important;
}

.section-title {
    font-family: bold, sans-serif !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: #17191d !important;
    margin: 0 0 20px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.section-title i {
    color: #e8871e !important; /* Gold icons */
    font-size: 16px !important;
}

/* Form grid */
.form-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px 24px !important;
}

.form-group {
    display: flex !important;
    flex-direction: column !important;
}

.form-group.span-2-desktop {
    grid-column: span 1 !important; /* Will keep balanced columns but editable if wanted */
}

/* Inputs styling */
.form-group label {
    font-family: bold, sans-serif !important;
    font-size: 12px !important;
    color: #17191d !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    margin-bottom: 8px !important;
    text-align: left !important;
}

.input-wrapper {
    position: relative !important;
    width: 100% !important;
}

.input-icon {
    position: absolute !important;
    left: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #22252b !important;
    font-size: 14px !important;
    transition: color 0.3s ease !important;
    pointer-events: none !important;
}

.input-wrapper input {
    width: 100% !important;
    padding: 13px 15px 13px 44px !important;
    border: 1.5px solid #e1e6e3 !important;
    border-radius: 10px !important;
    font-family: medium, sans-serif !important;
    font-size: 14px !important;
    color: #2c2c2b !important;
    background: #ffffff !important;
    box-shadow: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-sizing: border-box !important;
    margin-top: 0 !important;
}

.input-wrapper input::placeholder {
    color: #b0b8b2 !important;
}

/* Focus effects */
.input-wrapper input:focus {
    outline: none !important;
    border-color: #e8871e !important; /* Gold border */
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(232, 135, 30, 0.15) !important; /* Ambient gold aura */
}

.input-wrapper:focus-within .input-icon {
    color: #e8871e !important; /* Icon lights up gold on focus */
}

/* Address Copied Active Visual Clue */
.input-wrapper input.address-copied-active {
    background-color: #f7faf8 !important;
    border-color: rgba(23, 25, 29, 0.2) !important;
    box-shadow: 0 0 10px rgba(23, 25, 29, 0.05) !important;
    animation: flash-copied-indicator 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes flash-copied-indicator {
    0% {
        background-color: rgba(232, 135, 30, 0.3);
    }
    100% {
        background-color: #f7faf8;
    }
}

/* Delivery Section Title and Checkbox row */
.section-header-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    border-bottom: 1.5px solid #eaeaea !important;
    padding-bottom: 8px !important;
    margin-bottom: 20px !important;
}

.section-header-row .section-title {
    border: none !important;
    margin-bottom: 0 !important;
}

/* Custom premium checkbox */
.premium-checkbox-label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    font-family: bold, sans-serif !important;
    font-size: 12px !important;
    color: #17191d !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    user-select: none !important;
}

.premium-checkbox-label input {
    display: none !important; /* Hide native checkbox */
}

.custom-checkbox {
    width: 18px !important;
    height: 18px !important;
    border: 1.5px solid #17191d !important;
    border-radius: 4px !important;
    background: #fff !important;
    position: relative !important;
    display: inline-block !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.premium-checkbox-label:hover .custom-checkbox {
    border-color: #e8871e !important;
    box-shadow: 0 0 8px rgba(232, 135, 30, 0.3) !important;
}

.premium-checkbox-label input:checked + .custom-checkbox {
    background: #17191d !important;
    border-color: #17191d !important;
}

.premium-checkbox-label input:checked + .custom-checkbox::after {
    content: "" !important;
    position: absolute !important;
    left: 5px !important;
    top: 2px !important;
    width: 4px !important;
    height: 8px !important;
    border: solid #e8871e !important;
    border-width: 0 2px 2px 0 !important;
    transform: rotate(45deg) !important;
}

/* Registration footer buttons */
.premium-reg-footer {
    border-top: 1.5px solid #eaeaea !important;
    padding-top: 25px !important;
    margin-top: 10px !important;
    text-align: right !important;
}

.premium-reg-btn {
    width: auto !important;
    min-width: 240px !important;
    background: linear-gradient(135deg, #17191d, #22252b) !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(232, 135, 30, 0.25) !important;
    border-radius: 10px !important;
    padding: 14px 28px !important;
    font-family: bold, sans-serif !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 15px rgba(23, 25, 29, 0.15) !important;
}

.premium-reg-btn:hover {
    background: linear-gradient(135deg, #1f2228, #17191d) !important;
    border-color: #e8871e !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(23, 25, 29, 0.2), 
                0 0 15px rgba(232, 135, 30, 0.25) !important;
}

.premium-reg-btn:active {
    transform: translateY(0) !important;
}

.premium-reg-btn i {
    font-size: 12px !important;
    transition: transform 0.3s ease !important;
}

.premium-reg-btn:hover i {
    transform: translateX(3px) !important;
}

/* Responsiveness overrides for Mobile/Tablet overlay */
@media only screen and (max-width: 767px) {
    #reg_ctr {
        align-items: flex-start !important;
        overflow-y: auto !important;
    }
    #reg_ctr #reg_form_ctr {
        width: 100% !important;
        height: 100vh !important;
        max-height: 100vh !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 60px 24px 100px 24px !important;
        overflow-y: scroll !important;
    }
    
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .premium-modal-close {
        top: 15px !important;
        right: 15px !important;
    }
    
    .section-header-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }
    
    .premium-reg-btn {
        width: 100% !important;
    }
}

/* ==========================================================
   14. PREMIUM LOGIN MODAL STYLES
   ========================================================== */
#login_ctr {
    background: rgba(23, 25, 29, 0.45) !important; /* Emerald translucent wash */
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 100000 !important;
}

#login_ctr #login_form_ctr_new {
    width: 480px !important;
    max-width: 92% !important;
    background: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid rgba(232, 135, 30, 0.35) !important;
    border-radius: 20px !important;
    box-shadow: 0 30px 70px rgba(23, 25, 29, 0.15), 
                0 0 40px rgba(232, 135, 30, 0.05) !important;
    padding: 45px 45px 40px 45px !important;
    margin: auto !important;
    position: relative !important;
    box-sizing: border-box !important;
    animation: premium-modal-entrance 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.premium-login-header {
    text-align: left !important;
    margin-bottom: 25px !important;
    border-bottom: 1.5px solid #eaeaea !important;
    padding-bottom: 15px !important;
}

.premium-login-header h1, .premium-login-header h2 {
    font-family: bold, sans-serif !important;
    font-size: 26px !important;
    color: #17191d !important;
    margin: 0 0 8px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.premium-login-subtitle {
    font-family: light, sans-serif !important;
    font-size: 13.5px !important;
    color: #666666 !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

.forgot-pass-link:hover {
    color: #e8871e !important;
    text-shadow: 0 0 1px rgba(232, 135, 30, 0.2);
}

.premium-login-btn {
    width: auto !important;
    min-width: 160px !important;
    background: linear-gradient(135deg, #17191d, #22252b) !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(232, 135, 30, 0.25) !important;
    border-radius: 10px !important;
    padding: 13px 26px !important;
    font-family: bold, sans-serif !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 15px rgba(23, 25, 29, 0.15) !important;
}

.premium-login-btn:hover {
    background: linear-gradient(135deg, #1f2228, #17191d) !important;
    border-color: #e8871e !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(23, 25, 29, 0.2), 
                0 0 15px rgba(232, 135, 30, 0.25) !important;
}

.premium-login-btn:active {
    transform: translateY(0) !important;
}

.premium-login-btn i {
    font-size: 13px !important;
    transition: transform 0.3s ease !important;
}

.premium-login-btn:hover i {
    transform: translateX(3px) !important;
}

/* Mobile responsiveness overrides for Login Modal */
@media only screen and (max-width: 767px) {
    #login_ctr {
        align-items: flex-start !important;
        overflow-y: auto !important;
    }
    
    #login_ctr #login_form_ctr_new {
        width: 100% !important;
        height: 100vh !important;
        max-height: 100vh !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 80px 24px 100px 24px !important;
    }
    
    .premium-login-btn {
        width: 100% !important;
    }
}

/* ==========================================================
   15. PREMIUM STOREFRONT FORMS REDESIGN (Forgot PW, Profile, Checkout)
   ========================================================== */

/* Centered Form Page Card (Forgot Password, etc.) */
.premium-page-card-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 60px 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    background: radial-gradient(circle at 10% 20%, rgba(23, 25, 29, 0.02) 0%, rgba(255, 255, 255, 1) 90%) !important;
}

.premium-page-card {
    width: 500px !important;
    max-width: 100% !important;
    background: #ffffff !important;
    border: 1.5px solid rgba(232, 135, 30, 0.3) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 50px rgba(23, 25, 29, 0.06),
                0 0 30px rgba(232, 135, 30, 0.02) !important;
    padding: 40px 45px !important;
    box-sizing: border-box !important;
    text-align: left !important;
    animation: premium-modal-entrance 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.premium-page-card h1 {
    font-family: bold, sans-serif !important;
    font-size: 24px !important;
    color: #17191d !important;
    margin: 0 0 10px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    border-bottom: 1.5px solid #eaeaea !important;
    padding-bottom: 15px !important;
}

.premium-page-card-text {
    font-family: light, sans-serif !important;
    font-size: 13.5px !important;
    color: #555555 !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
}

/* Profile Layout Enhancement */
.profile-grid-layout {
    display: grid !important;
    grid-template-columns: 260px 1fr !important;
    gap: 30px !important;
    margin-top: 30px !important;
    align-items: start !important;
    width: 100% !important;
}

.profile-sidebar-new {
    background: #ffffff !important;
    border: 1.5px solid rgba(23, 25, 29, 0.08) !important;
    border-radius: 16px !important;
    padding: 20px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01) !important;
    box-sizing: border-box !important;
}

.profile-menu-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 16px !important;
    border-radius: 10px !important;
    font-family: bold, sans-serif !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #555555 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    margin-bottom: 8px !important;
    background: transparent !important;
    border: none !important;
    width: 100% !important;
    text-align: left !important;
    box-sizing: border-box !important;
}

.profile-menu-item i {
    font-size: 15px !important;
    color: #22252b !important;
    transition: color 0.3s ease !important;
    width: 20px !important;
    text-align: center !important;
}

.profile-menu-item:hover {
    color: #17191d !important;
    background: rgba(23, 25, 29, 0.03) !important;
}

.profile-menu-item:hover i {
    color: #e8871e !important;
}

.profile-menu-item.active {
    color: #17191d !important;
    background: rgba(23, 25, 29, 0.05) !important;
    border-left: 3px solid #e8871e !important;
    padding-left: 13px !important;
}

.profile-menu-item.active i {
    color: #e8871e !important;
}

.profile-pane-card {
    background: #ffffff !important;
    border: 1.5px solid rgba(232, 135, 30, 0.2) !important;
    border-radius: 16px !important;
    padding: 35px 40px !important;
    box-shadow: 0 10px 30px rgba(23, 25, 29, 0.04) !important;
    box-sizing: border-box !important;
    animation: premium-modal-entrance 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.profile-pane-card h2 {
    font-family: bold, sans-serif !important;
    font-size: 18px !important;
    color: #17191d !important;
    margin: 0 0 25px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    border-bottom: 1.5px solid #f0f3f1 !important;
    padding-bottom: 15px !important;
}

.profile-pane-card h2 i {
    color: #e8871e !important;
}

/* Readonly fields styling */
.premium-input-readonly {
    background-color: #f7f9f8 !important;
    color: #777777 !important;
    border-color: #eaeaea !important;
    cursor: not-allowed !important;
}

/* Button override for Profile */
.premium-form-btn {
    background: linear-gradient(135deg, #17191d, #22252b) !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(232, 135, 30, 0.25) !important;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    font-family: bold, sans-serif !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 12px rgba(23, 25, 29, 0.1) !important;
}

.premium-form-btn:hover {
    background: linear-gradient(135deg, #1f2228, #17191d) !important;
    border-color: #e8871e !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 20px rgba(23, 25, 29, 0.15), 0 0 10px rgba(232, 135, 30, 0.2) !important;
}

/* Checkout Panel & Inputs */
.checkout-details-card {
    background: #ffffff !important;
    border: 1.5px solid rgba(232, 135, 30, 0.2) !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 45px rgba(23, 25, 29, 0.04) !important;
    padding: 40px !important;
    box-sizing: border-box !important;
    margin-top: 30px !important;
    text-align: left !important;
}

.checkout-section-title {
    font-family: bold, sans-serif !important;
    font-size: 16px !important;
    color: #17191d !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    margin: 30px 0 20px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    border-bottom: 1.5px solid #f0f3f1 !important;
    padding-bottom: 10px !important;
}

.checkout-section-title:first-of-type {
    margin-top: 0 !important;
}

.checkout-section-title i {
    color: #e8871e !important;
}

.premium-checkout-btn {
    width: 100% !important;
    background: linear-gradient(135deg, #17191d 0%, #22252b 100%) !important;
    color: #ffffff !important;
    border: 1.5px solid #e8871e !important;
    border-radius: 12px !important;
    padding: 16px 30px !important;
    font-family: bold, sans-serif !important;
    font-size: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 10px 25px rgba(23, 25, 29, 0.15) !important;
    margin-top: 40px !important;
    box-sizing: border-box !important;
}

.premium-checkout-btn:hover {
    background: linear-gradient(135deg, #22252b 0%, #17191d 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 35px rgba(23, 25, 29, 0.25), 0 0 20px rgba(232, 135, 30, 0.3) !important;
}

.premium-checkout-btn:hover i {
    animation: bounce-horizontal 0.8s ease infinite;
}

@keyframes bounce-horizontal {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

/* Responsiveness for Profile and Checkout */
@media only screen and (max-width: 900px) {
    .profile-grid-layout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

@media only screen and (max-width: 767px) {
    .premium-page-card {
        padding: 30px 24px !important;
    }
    .profile-pane-card {
        padding: 24px 20px !important;
    }
    .checkout-details-card {
        padding: 24px 20px !important;
    }
}

/* ==========================================================
   16. LIVE CHAT ESCALATION & SUPPORT STYLING
   ========================================================== */

#ai-agent-banner {
    background: rgba(23, 25, 29, 0.85) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-bottom: 1.5px solid rgba(232, 135, 30, 0.3) !important;
    padding: 10px 16px !important;
    font-size: 12px !important;
    color: #e8871e !important;
    font-family: bold, sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    overflow: hidden !important;
    max-height: 0 !important;
    opacity: 0 !important;
}

#ai-agent-banner.ai-banner-visible {
    max-height: 45px !important;
    opacity: 1 !important;
}

#ai-agent-banner:hover {
    background: rgba(201, 84, 15, 0.95) !important;
    color: #ffffff !important;
    box-shadow: inset 0 0 10px rgba(232, 135, 30, 0.2) !important;
}

#ai-agent-banner.ai-banner-connecting {
    background: rgba(201, 84, 15, 0.9) !important;
    color: #ffffff !important;
    cursor: default !important;
}

#ai-agent-banner.ai-banner-active {
    background: rgba(23, 25, 29, 0.95) !important;
    color: #e8871e !important;
    cursor: default !important;
    border-bottom-color: rgba(232, 135, 30, 0.3) !important;
}

#ai-agent-banner.ai-banner-resolved {
    background: rgba(60, 60, 60, 0.9) !important;
    color: #cccccc !important;
    cursor: default !important;
}

/* Agent Chat Bubble Styling */
.ai-msg.support {
    align-self: flex-start !important;
    background: linear-gradient(135deg, #17191d 0%, #22252b 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(232, 135, 30, 0.35) !important;
    box-shadow: 0 4px 15px rgba(23, 25, 29, 0.1) !important;
    border-radius: 4px 16px 16px 16px !important;
    position: relative !important;
    padding-top: 14px !important;
    margin-top: 12px !important;
    max-width: 80% !important;
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    word-break: break-word !important;
}

.ai-agent-badge {
    position: absolute !important;
    top: -8px !important;
    left: 10px !important;
    background: #e8871e !important;
    color: #17191d !important;
    font-size: 9px !important;
    font-family: bold, sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 2px 7px !important;
    border-radius: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

.ai-agent-badge i {
    font-size: 8px !important;
}

/* Subtle pulse animation */
@keyframes pulse-support {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.animate-pulse {
    animation: pulse-support 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
}

/* ==========================================================
   17. PREMIUM CONTACT US & OVERHAULED FOOTER LAYOUT
   ========================================================== */

.premium-contact-section {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    justify-content: space-between;
    align-items: stretch;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
}

.premium-contact-col-left {
    flex: 1.2;
    min-width: 320px;
}

.premium-contact-col-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 320px;
}

/* Glassmorphic Contact Card */
.premium-contact-card {
    background: rgba(34, 37, 43, 0.75) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1.5px solid rgba(232, 135, 30, 0.15) !important;
    border-radius: 16px !important;
    padding: 40px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    height: 100%;
    box-sizing: border-box;
}

.premium-contact-card:hover {
    border-color: rgba(232, 135, 30, 0.35) !important;
    box-shadow: 0 25px 60px rgba(23, 25, 29, 0.25) !important;
    transform: translateY(-4px);
}

.premium-contact-title {
    color: #e8871e !important;
    font-family: bold, sans-serif !important;
    font-size: 26px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-top: 0 !important;
    margin-bottom: 12px !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-contact-subtitle {
    color: rgba(255, 255, 255, 0.6) !important;
    font-family: light, sans-serif !important;
    font-size: 14px !important;
    margin-bottom: 30px !important;
    line-height: 1.5 !important;
}

/* Form Alert Banner */
.premium-alert-banner {
    padding: 16px 20px !important;
    border-radius: 10px !important;
    margin-bottom: 25px !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    font-family: medium, sans-serif !important;
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    animation: ai-fade-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

.premium-alert-banner.success {
    background: rgba(23, 25, 29, 0.85) !important;
    border: 1.5px solid rgba(232, 135, 30, 0.3) !important;
    color: #e8871e !important;
}

.premium-alert-banner.error {
    background: rgba(58, 8, 8, 0.85) !important;
    border: 1.5px solid rgba(248, 113, 113, 0.3) !important;
    color: #f87171 !important;
}

.premium-alert-banner i {
    font-size: 18px !important;
}

/* Premium Form Elements */
.premium-input-group {
    position: relative !important;
    margin-bottom: 24px !important;
    width: 100% !important;
}

.premium-input-group i {
    position: absolute !important;
    left: 16px !important;
    top: 17px !important;
    color: rgba(232, 135, 30, 0.4) !important;
    font-size: 15px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    pointer-events: none !important;
}

.premium-input-group textarea ~ i {
    top: 20px !important;
}

.premium-contact-input {
    width: 100% !important;
    padding: 15px 16px 15px 48px !important;
    background: rgba(31, 34, 40, 0.5) !important;
    border: 1.5px solid rgba(232, 135, 30, 0.15) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-family: medium, sans-serif !important;
    font-size: 13.5px !important;
    outline: none !important;
    box-sizing: border-box !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.premium-contact-input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.premium-contact-input:focus {
    border-color: #e8871e !important;
    background: rgba(31, 34, 40, 0.8) !important;
    box-shadow: 0 0 15px rgba(232, 135, 30, 0.25) !important;
}

.premium-input-group:focus-within i {
    color: #e8871e !important;
    transform: scale(1.1) !important;
}

.premium-contact-input:-webkit-autofill {
    -webkit-text-fill-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(31, 34, 40, 0.9) inset !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

/* Custom Checkbox Design */
.premium-checkbox-container {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-top: 15px !important;
    margin-bottom: 25px !important;
    cursor: pointer !important;
    user-select: none !important;
}

.premium-checkbox-container input[type="checkbox"] {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

.premium-custom-checkbox {
    position: relative !important;
    width: 20px !important;
    height: 20px !important;
    background: rgba(31, 34, 40, 0.6) !important;
    border: 1.5px solid rgba(232, 135, 30, 0.3) !important;
    border-radius: 4px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    flex-shrink: 0 !important;
    margin-top: 1px !important;
}

.premium-custom-checkbox::after {
    content: "" !important;
    position: absolute !important;
    left: 6px !important;
    top: 2px !important;
    width: 5px !important;
    height: 10px !important;
    border: solid #17191d !important;
    border-width: 0 2px 2px 0 !important;
    transform: rotate(45deg) scale(0) !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.premium-checkbox-container input[type="checkbox"]:checked ~ .premium-custom-checkbox {
    background: #e8871e !important;
    border-color: #e8871e !important;
    box-shadow: 0 0 10px rgba(232, 135, 30, 0.4) !important;
}

.premium-checkbox-container input[type="checkbox"]:checked ~ .premium-custom-checkbox::after {
    transform: rotate(45deg) scale(1.1) !important;
}

.premium-checkbox-container:hover .premium-custom-checkbox {
    border-color: #e8871e !important;
    box-shadow: 0 0 8px rgba(232, 135, 30, 0.15) !important;
}

.premium-checkbox-label {
    font-family: light, sans-serif !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.4 !important;
}

.premium-checkbox-label strong {
    font-family: bold, sans-serif !important;
}

.premium-checkbox-label a {
    color: #e8871e !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.premium-checkbox-label a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

/* Premium Flying Send Button */
.premium-contact-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    background: linear-gradient(135deg, #e8871e 0%, #e8871e 100%) !important;
    color: #17191d !important;
    font-family: bold, sans-serif !important;
    font-size: 13px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    border: none !important;
    padding: 15px 32px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 15px rgba(232, 135, 30, 0.25) !important;
    width: 100% !important;
}

.premium-contact-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(232, 135, 30, 0.4), 0 0 15px rgba(232, 135, 30, 0.2) !important;
    background: linear-gradient(135deg, #e8871e 0%, #9aa793 100%) !important;
}

.premium-contact-btn:active {
    transform: translateY(1px) !important;
}

.premium-contact-btn i {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.premium-contact-btn:hover i {
    transform: translate(6px, -6px) scale(1.1) !important;
}

/* Info Column Details */
.premium-info-card {
    background: rgba(34, 37, 43, 0.6) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1.5px solid rgba(232, 135, 30, 0.1) !important;
    border-radius: 12px !important;
    padding: 22px !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-sizing: border-box !important;
}

.premium-info-card:hover {
    border-color: rgba(232, 135, 30, 0.3) !important;
    background: rgba(34, 37, 43, 0.75) !important;
    transform: translateX(6px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}

.premium-info-icon-wrapper {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: rgba(232, 135, 30, 0.08) !important;
    border: 1.5px solid rgba(232, 135, 30, 0.2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    color: #e8871e !important;
    font-size: 18px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.premium-info-card:hover .premium-info-icon-wrapper {
    background: #e8871e !important;
    color: #17191d !important;
    transform: scale(1.1) rotate(8deg) !important;
    box-shadow: 0 0 15px rgba(232, 135, 30, 0.4) !important;
}

.premium-info-content {
    flex-grow: 1 !important;
}

.premium-info-content h3 {
    margin: 0 0 4px 0 !important;
    font-family: bold, sans-serif !important;
    font-size: 12px !important;
    color: #e8871e !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
}

.premium-info-content p {
    margin: 0 !important;
    font-family: light, sans-serif !important;
    font-size: 13.5px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.4 !important;
}

.premium-info-content a {
    color: inherit !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.premium-info-content a:hover {
    color: #e8871e !important;
}

/* Premium Dark-Theme Google Map Container */
.premium-map-container {
    border-radius: 12px !important;
    overflow: hidden !important;
    border: 1.5px solid rgba(232, 135, 30, 0.1) !important;
    height: 250px !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3) !important;
    position: relative !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-sizing: border-box !important;
}

.premium-map-container:hover {
    border-color: rgba(232, 135, 30, 0.3) !important;
    box-shadow: 0 20px 40px rgba(23, 25, 29, 0.2) !important;
}

/* Elegant CSS Grayscale + Contrast Filter to deliver a luxury dark map look */
.premium-map-iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    filter: grayscale(100%) invert(92%) contrast(90%) hue-rotate(0deg) brightness(95%) !important;
    -webkit-filter: grayscale(100%) invert(92%) contrast(90%) hue-rotate(0deg) brightness(95%) !important;
    transition: filter 0.5s ease, -webkit-filter 0.5s ease !important;
}

.premium-map-container:hover .premium-map-iframe {
    filter: grayscale(40%) invert(0%) contrast(100%) hue-rotate(0deg) brightness(100%) !important;
    -webkit-filter: grayscale(40%) invert(0%) contrast(100%) hue-rotate(0deg) brightness(100%) !important;
}

/* Responsive Overrides for split-layout */
@media only screen and (max-width: 900px) {
    .premium-contact-section {
        flex-direction: column !important;
        gap: 30px !important;
        width: 95% !important;
    }
    .premium-contact-col-left, .premium-contact-col-right {
        width: 100% !important;
        flex: none !important;
    }
}

@media only screen and (max-width: 600px) {
    .premium-contact-card {
        padding: 24px 20px !important;
    }
    .premium-contact-title {
        font-size: 22px !important;
    }
    .premium-contact-subtitle {
        font-size: 13px !important;
        margin-bottom: 24px !important;
    }
    .premium-info-card {
        padding: 16px 18px !important;
        gap: 14px !important;
    }
    .premium-info-icon-wrapper {
        width: 42px !important;
        height: 42px !important;
        font-size: 16px !important;
    }
    .premium-map-container {
        height: 200px !important;
    }
}

/* Premium Options Selectors Styles */
.premium-options-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    margin: 20px 0 !important;
    padding: 15px !important;
    background: rgba(31, 34, 40, 0.4) !important;
    border: 1px solid rgba(232, 135, 30, 0.15) !important;
    border-radius: 12px !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    box-sizing: border-box !important;
}

.premium-option-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    text-align: left !important;
}

.premium-option-group label {
    font-family: 'medium', sans-serif !important;
    font-size: 13px !important;
    color: #e8871e !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 2px !important;
}

.premium-option-group label i {
    color: #e8871e !important;
    opacity: 0.8 !important;
}

.premium-option-select {
    width: 100% !important;
    padding: 12px 16px !important;
    background: rgba(31, 34, 40, 0.8) !important;
    border: 1.5px solid rgba(232, 135, 30, 0.2) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-family: 'regular', sans-serif !important;
    font-size: 14px !important;
    outline: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a3e635' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    background-size: 16px !important;
    box-sizing: border-box !important;
}

.premium-option-select:hover {
    border-color: rgba(232, 135, 30, 0.5) !important;
    box-shadow: 0 0 10px rgba(232, 135, 30, 0.1) !important;
}

.premium-option-select:focus {
    border-color: #e8871e !important;
    box-shadow: 0 0 15px rgba(232, 135, 30, 0.25) !important;
}

.premium-option-select option {
    background: #1f2228 !important;
    color: #ffffff !important;
    padding: 12px !important;
}

/* Styled spec highlights */
.multiple-options-alert {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 11px !important;
    color: #e8871e !important;
    background: rgba(232, 135, 30, 0.1) !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
    border: 1px solid rgba(232, 135, 30, 0.2) !important;
    margin-left: 10px !important;
    font-family: 'medium' !important;
    vertical-align: middle !important;
}
