:root {
    --bg-dark-primary: #051124;
    --bg-dark-secondary: #082756;
    --bg-dark-card: #0c254c;
    --accent-gold: #F7AA21;
    --accent-blue: #F7AA21;
    --accent-blue-hover: #d88b0e;
    --text-light: #f8fafc;
    --text-muted: #cbd5e1;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: rgba(0, 0, 0, 0.4);
    --card-glow: rgba(247, 170, 33, 0.15);
}

body {
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 100% !important;
}

button,
input,
select,
textarea,
.btn,
.multiselect-badge,
.placeholder-text {
    font-family: 'Poppins', sans-serif !important;
}

/* Hero Banner Style */
.stores-hero {
    background: linear-gradient(180deg, #051124 0%, var(--bg-dark-primary) 100%);
    padding: 0 0 10px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
    position: relative;
}

.stores-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(48, 107, 195, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stores-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.stores-hero h1 span {
    color: var(--accent-gold);
}

.stores-hero p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 10px auto;
    font-weight: 300;
}

/* Nav Tabs Custom */
.custom-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.custom-nav-tabs {
    background: rgba(8, 39, 86, 0.4);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(247, 170, 33, 0.2);
    display: inline-flex;
    gap: 6px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.custom-tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.custom-tab-btn.active {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-blue-hover) 100%);
    color: #020b18;
    box-shadow: 0 5px 20px rgba(247, 170, 33, 0.4);
}

.custom-tab-btn:hover:not(.active) {
    color: var(--text-light);
    background: rgba(247, 170, 33, 0.05);
}

/* View Section Controls */
.controls-card {
    background: transparent !important;
    border: none !important;
    padding: 10px 0 !important;
    margin-bottom: 30px;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.search-input-group {
    position: relative;
}

.search-input-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.search-input-group input {
    padding-left: 50px;
}

.form-control,
.form-select {
    background-color: #f8fafc !important;
    border: 1.5px solid rgba(8, 39, 86, 0.12) !important;
    color: #1e293b !important;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 0.92rem;
    transition: all 0.25s ease;
}

.form-control:focus,
.form-select:focus {
    background-color: #ffffff !important;
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 10px rgba(247, 170, 33, 0.15) !important;
    color: #1e293b !important;
}

.form-control::placeholder {
    color: #94a3b8;
}

/* Store Grid Cards */
.store-card {
    background: linear-gradient(145deg, var(--bg-dark-card) 0%, var(--bg-dark-secondary) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px var(--glass-shadow);
    position: relative;
}

.store-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px var(--card-glow);
}

.store-card-header {
    position: relative;
    height: 130px;
    background: linear-gradient(135deg, #051124 0%, #102a45 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--glass-border);
}

.store-card-logo-container {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--bg-dark-secondary);
    border: 4px solid var(--bg-dark-card);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: absolute;
    bottom: -45px;
    left: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.store-card:hover .store-card-logo-container {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.store-card-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-card-logo-container i {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

.store-card-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, rgba(247, 170, 33, 0.25) 0%, rgba(216, 139, 14, 0.35) 100%);
    color: var(--accent-gold);
    border: 1.5px solid var(--accent-gold);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 0 12px rgba(247, 170, 33, 0.25);
}

.store-card-body {
    padding: 60px 24px 24px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.store-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-light);
    letter-spacing: -0.5px;
}

.store-location {
    font-size: 0.88rem;
    color: var(--accent-gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.store-location i {
    font-size: 1rem;
}

.store-contacts-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 0.88rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 18px;
}

.store-contacts-list li {
    margin-bottom: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.store-contacts-list li i {
    width: 16px;
    color: var(--accent-blue);
    margin-top: 3px;
}

.store-owner-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 5px;
    display: block;
}

.store-owner-name {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Social Media Icons */
.store-social-links {
    display: flex;
    gap: 8px;
    margin-top: 0;
}

.social-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    text-decoration: none;
}

.social-icon-btn:hover {
    color: #ffffff !important;
    transform: translateY(-3px);
}

.social-icon-btn.instagram:hover {
    background: #e1306c;
    border-color: #e1306c;
    box-shadow: 0 4px 10px rgba(225, 48, 108, 0.3);
}

.social-icon-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 4px 10px rgba(24, 119, 242, 0.3);
}

.social-icon-btn.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
}

.social-icon-btn.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    box-shadow: 0 4px 10px rgba(0, 119, 181, 0.3);
}

/* Add Store Form Container */
.form-section-card {
    background: #ffffff !important;
    border: 1px solid rgba(8, 39, 86, 0.15) !important;
    border-radius: 16px !important;
    padding: 35px !important;
    box-shadow: 0 20px 50px rgba(8, 39, 86, 0.1) !important;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: none !important;
}

.form-section-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #082756 !important;
    margin-bottom: 20px !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    display: block !important;
    letter-spacing: 0 !important;
    text-align: center;
}

.form-group-label {
    color: #475569 !important;
    font-weight: 600 !important;
    margin-bottom: 6px !important;
    font-size: 0.88rem !important;
    font-family: 'Poppins', sans-serif;
}

.form-group-label span {
    color: var(--accent-gold);
}

/* Upload Container Styling */
.logo-upload-wrapper {
    border: 2px dashed rgba(8, 39, 86, 0.15) !important;
    border-radius: 10px !important;
    padding: 24px !important;
    background: #f8fafc !important;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease !important;
}

.logo-upload-wrapper:hover {
    border-color: var(--accent-gold) !important;
    background: rgba(247, 170, 33, 0.05) !important;
}

.logo-upload-wrapper i {
    font-size: 1.8rem !important;
    color: #64748b !important;
    margin-bottom: 8px !important;
}

.logo-upload-wrapper p {
    font-size: 0.85rem !important;
    color: #64748b !important;
    margin-bottom: 0 !important;
}

.logo-preview-img {
    max-width: 100px;
    max-height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
    display: none;
    margin: 0 auto 10px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Custom Category Checkbox Chips */
.custom-checkbox-card {
    border: 1px solid rgba(8, 39, 86, 0.1) !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    background: #f8fafc !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
    margin: 0 !important;
}

.custom-checkbox-card:hover {
    border-color: var(--accent-gold) !important;
    background: rgba(247, 170, 33, 0.03) !important;
}

.custom-checkbox-card .form-check-input {
    margin-top: 0 !important;
    margin-right: 10px !important;
    cursor: pointer !important;
}

.custom-checkbox-card .form-check-label {
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    color: #475569 !important;
    cursor: pointer !important;
    user-select: none !important;
}

/* checked state highlight */
.custom-checkbox-card:has(.form-check-input:checked) {
    border-color: var(--accent-gold) !important;
    background: rgba(247, 170, 33, 0.08) !important;
}

/* Submit Buttons */
.btn-submit-store {
    background: var(--accent-gold) !important;
    border: none !important;
    color: #020b18 !important;
    font-weight: 700 !important;
    font-family: 'Poppins', sans-serif !important;
    letter-spacing: 0.5px !important;
    padding: 12px 36px !important;
    border-radius: 30px !important;
    font-size: 0.95rem !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 15px rgba(247, 170, 33, 0.25) !important;
}

.btn-submit-store:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(247, 170, 33, 0.35) !important;
    color: #020b18 !important;
}

/* Toast Alert Setup */
.toast-notification {
    position: fixed;
    top: 30px;
    right: 30px;
    background: var(--accent-gold);
    color: #020b18;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transform: translateY(-150px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-notification.show {
    transform: translateY(0);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 18px;
}

/* Fix Menu Layout Alignment */
#menu-placeholder {
    min-height: 120px;
    display: block;
    width: 100%;
}

@media (max-width: 768px) {
    #menu-placeholder {
        min-height: 110px;
    }

    .stores-hero h1 {
        font-size: 2.5rem;
    }
}

/* Horizontal Card Custom Styles */
.store-card.horizontal-card {
    flex-direction: row;
    height: auto;
    border-radius: 16px;
}

.horizontal-logo-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bg-dark-secondary);
    border: 3px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.store-card.horizontal-card:hover .horizontal-logo-wrapper {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.horizontal-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.horizontal-logo-wrapper i {
    font-size: 2.8rem;
    color: var(--accent-gold);
}

.store-card.horizontal-card .store-contacts-list li {
    margin-bottom: 0px;
}

@media (max-width: 768px) {
    .store-card.horizontal-card {
        flex-direction: column;
    }

    .store-card.horizontal-card .border-end,
    .store-card.horizontal-card .border-start {
        border: none !important;
    }

    .store-card.horizontal-card .col-md-3 {
        min-height: auto !important;
        padding: 20px 0 !important;
    }
}

/* Professional Upgrades */
.brand-sidebar {
    position: relative;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.category-indicator {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--accent-gold);
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.city-badge {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.city-badge i {
    color: var(--accent-gold);
}

.status-indicator {
    font-size: 0.72rem;
    font-weight: 600;
    color: #10b981;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #10b981;
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
    }

    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

.store-address-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 10px;
}

.owner-info-profile {
    margin-top: auto;
}

.owner-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(48, 107, 195, 0.12);
    border: 1px solid rgba(48, 107, 195, 0.3);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.owner-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.owner-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

@media (max-width: 576px) {
    .brand-sidebar {
        border-bottom-left-radius: 0px;
        border-top-right-radius: 15px;
    }
}

/* Custom Checkbox Cards */
.custom-checkbox-card {
    background: rgba(2, 11, 24, 0.4);
    border: 1px solid var(--glass-border);
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.custom-checkbox-card:hover {
    border-color: var(--accent-gold);
    background: rgba(247, 170, 33, 0.04);
}

.custom-checkbox-card .form-check-input {
    background-color: var(--bg-dark-primary) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    margin-top: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
    border-radius: 4px !important;
}

.custom-checkbox-card .form-check-input:checked {
    background-color: var(--accent-gold) !important;
    border-color: var(--accent-gold) !important;
}

.custom-checkbox-card .form-check-label {
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-light);
    user-select: none;
    margin-bottom: 0;
}

/* Category Tag Badges inside Cards */
.store-category-tag-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(247, 170, 33, 0.08);
    color: #b45309;
    border: 1px solid rgba(247, 170, 33, 0.25);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.store-category-tag-badge:hover {
    background: rgba(247, 170, 33, 0.15);
    border-color: var(--accent-gold);
    color: #b45309;
}

/* Premium Card Redesign - High Contrast Professional Card */
.store-card.premium-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: visible;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.store-card.premium-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold) !important;
    box-shadow: 0 15px 30px rgba(247, 170, 33, 0.15);
}

.store-logo-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.store-card.premium-card:hover .store-logo-wrapper {
    border-color: var(--accent-gold);
    transform: scale(1.04);
}

.store-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-logo-wrapper i {
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.city-tag {
    font-size: 0.72rem;
    color: #475569;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    background: #f1f5f9;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3px 10px;
    border-radius: 6px;
}

.active-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: #047857;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #ecfdf5;
    padding: 3px 10px;
    border-radius: 6px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.store-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Poppins', sans-serif;
    margin-top: 4px;
}

.store-address-info {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.5;
}

.store-address-info i {
    color: var(--accent-gold);
    margin-right: 6px;
}

.owner-profile-snippet .owner-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.owner-subtitle {
    font-size: 0.65rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.owner-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #0f172a;
}

/* Products List Details */
.store-products-list {
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--accent-gold);
    border-radius: 8px;
    padding: 10px 14px;
}

.products-label {
    font-size: 0.65rem;
    color: #4b586e;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.products-label i {
    color: var(--accent-gold);
}

.products-text {
    font-size: 0.82rem;
    color: #1e293b;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

/* Store Address Box Details */
.store-address-box {
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--bg-dark-secondary);
    border-radius: 8px;
    padding: 10px 14px;
}

.address-label {
    font-size: 0.65rem;
    color: #4b586e;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.address-label i {
    color: var(--bg-dark-secondary);
}

.address-text {
    font-size: 0.82rem;
    color: #1e293b;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

/* Horizontal Row Card Layout */
.horizontal-row-card {
    border-radius: 12px !important;
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
    border: 1px solid rgba(8, 39, 86, 0.07) !important;
    border-left: 4px solid transparent !important;
    padding: 12px 18px !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.horizontal-row-card:hover {
    transform: translateX(4px);
    box-shadow: 0 12px 35px rgba(8, 39, 86, 0.08) !important;
    border-color: rgba(8, 39, 86, 0.12) !important;
    border-left-color: var(--accent-gold) !important;
}

.horizontal-row-card .store-logo-wrapper {
    width: 52px !important;
    height: 52px !important;
    border-radius: 10px !important;
    border: 1.5px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid rgba(0, 0, 0, 0.05) !important;
        padding-right: 12px !important;
    }
}

/* Custom Multiselect Dropdown */
.custom-multiselect-container {
    width: 100%;
}

.multiselect-trigger {
    background-color: #ffffff !important;
    border: 1px solid rgba(8, 39, 86, 0.15) !important;
    min-height: 44px;
    padding: 8px 16px !important;
    border-radius: 10px;
    cursor: pointer;
}

.multiselect-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid rgba(8, 39, 86, 0.12);
    border-radius: 12px;
    z-index: 100;
    display: none;
}

.multiselect-dropdown.show {
    display: block !important;
}

.multiselect-option-item {
    transition: background 0.15s ease;
    border-radius: 6px;
    color: #1e293b !important;
}

.multiselect-option-item:hover {
    background: rgba(8, 39, 86, 0.04);
}

.multiselect-option-item.selected {
    background: rgba(247, 170, 33, 0.08);
}

.multiselect-badge {
    background: rgba(247, 170, 33, 0.12);
    color: #b45309;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(247, 170, 33, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Form Section Subtitle Headers */
.form-section-subtitle {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #082756 !important;
    border-bottom: 1.5px solid rgba(8, 39, 86, 0.08) !important;
    padding-bottom: 6px !important;
}

/* Mobile Responsive Form Spacing */
@media (max-width: 576px) {
    .form-section-card {
        padding: 20px 15px !important;
        border-radius: 12px !important;
    }

    .form-section-title {
        font-size: 1.45rem !important;
        margin-bottom: 15px !important;
    }

    .logo-upload-wrapper {
        height: auto !important;
        padding: 20px !important;
    }
}

/* Unified Search, Filter and Tabs Row */
.unified-search-bar {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    max-width: 1080px;
    width: 100%;
    margin: 15px auto 0 auto;
    box-shadow: none;
    gap: 10px !important;
}

.unified-search-bar .tab-buttons-wrap {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
}

.unified-search-bar .dropdowns-wrap {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
}

.unified-search-bar .filter-item {
    position: relative;
    min-width: 160px;
}

.unified-search-bar .category-select-wrap {
    min-width: 185px;
}

.unified-search-bar .city-select-wrap {
    min-width: 145px;
}

.unified-search-bar .search-input-wrap {
    min-width: 300px;
    position: relative;
    display: block !important;
}

.unified-search-bar .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
    font-size: 0.95rem;
    z-index: 10;
}

.unified-search-bar .select-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 10;
}

.unified-select {
    background-color: rgba(5, 17, 36, 0.9) !important;
    border: 1px solid rgba(247, 170, 33, 0.25) !important;
    color: var(--text-light) !important;
    border-radius: 30px !important;
    height: 38px !important;
    font-size: 0.88rem !important;
    padding: 0 30px 0 38px !important;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23F7AA21' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
    background-position: right 12px center !important;
    background-size: 10px 10px !important;
    transition: border-color 0.2s ease;
}

.unified-select:focus,
.unified-select:hover {
    border-color: var(--accent-gold) !important;
    outline: none !important;
    background-color: rgba(5, 17, 36, 0.9) !important;
    color: var(--text-light) !important;
}

.unified-input {
    background-color: rgba(5, 17, 36, 0.9) !important;
    border: 1px solid rgba(247, 170, 33, 0.25) !important;
    color: var(--text-light) !important;
    border-radius: 30px !important;
    height: 38px !important;
    font-size: 0.88rem !important;
    padding-left: 38px !important;
    padding-right: 15px !important;
    transition: border-color 0.2s ease;
    width: 100%;
}

.unified-input:focus,
.unified-input:hover {
    border-color: var(--accent-gold) !important;
    outline: none !important;
    background-color: rgba(5, 17, 36, 0.9) !important;
    color: var(--text-light) !important;
}

.unified-input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Custom Tab Buttons inside Unified Bar */
.unified-search-bar .custom-tab-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--text-light) !important;
    padding: 8px 18px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.76rem !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    height: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
    white-space: nowrap !important;
}

.unified-search-bar .custom-tab-btn i {
    font-size: 0.85rem !important;
}

.unified-search-bar .custom-tab-btn.active {
    background: #F7AA21 !important;
    color: #020b18 !important;
    border-color: #F7AA21 !important;
    box-shadow: 0 4px 15px rgba(247, 170, 33, 0.3) !important;
}

.unified-search-bar .custom-tab-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: var(--text-light) !important;
}

/* Responsive Mobile Layout (<= 991px) */
@media (max-width: 991px) {
    .unified-search-bar {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 540px !important;
        margin: 15px auto 0 auto !important;
        padding: 0 15px !important;
        align-items: stretch !important;
    }

    .unified-search-bar .tab-buttons-wrap {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 8px !important;
    }

    .unified-search-bar .tab-buttons-wrap .custom-tab-btn {
        flex: 1 1 auto !important;
        min-width: 100px !important;
        font-size: 0.76rem !important;
        padding: 8px 10px !important;
        text-align: center !important;
        height: 38px !important;
    }

    .unified-search-bar .dropdowns-wrap {
        display: flex !important;
        width: 100% !important;
        gap: 10px !important;
    }

    .unified-search-bar .dropdowns-wrap .filter-item {
        flex: 1 !important;
        width: 50% !important;
        min-width: 0 !important;
    }

    .unified-search-bar .search-input-wrap {
        width: 100% !important;
        min-width: 0 !important;
    }
}

/* Small Mobile Screens Optimization (<= 576px) */
@media (max-width: 576px) {
    .unified-search-bar .tab-buttons-wrap {
        gap: 6px !important;
    }

    .unified-search-bar .tab-buttons-wrap .custom-tab-btn {
        font-size: 0.72rem !important;
        padding: 6px 8px !important;
        height: 36px !important;
        letter-spacing: 0 !important;
    }
    
    .unified-search-bar .tab-buttons-wrap .custom-tab-btn i {
        font-size: 0.78rem !important;
        margin-right: 4px !important;
    }
}

/* Extra Small Phones (<= 420px) */
@media (max-width: 420px) {
    .unified-search-bar .tab-buttons-wrap .custom-tab-btn {
        flex: 1 1 calc(50% - 4px) !important;
        font-size: 0.72rem !important;
        padding: 6px 6px !important;
    }
    
    .unified-search-bar .tab-buttons-wrap .custom-tab-btn#tab-list-btn {
        flex: 1 1 100% !important;
    }
}

/* Laptop Screens Optimization to maintain horizontal alignment */
@media (min-width: 992px) and (max-width: 1200px) {
    .unified-search-bar {
        gap: 6px !important;
    }
    .unified-search-bar .category-select-wrap {
        min-width: 150px !important;
    }
    .unified-search-bar .city-select-wrap {
        min-width: 120px !important;
    }
    .unified-search-bar .search-input-wrap {
        min-width: 200px !important;
    }
    .unified-search-bar .custom-tab-btn {
        padding: 6px 12px !important;
        font-size: 0.72rem !important;
        white-space: nowrap !important;
    }
}

/* Card Responsive Grid Redesign - Stacked Card Layout */
.store-card-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.store-card-main-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.store-info-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.store-info-details .info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #475569;
}

.store-info-details .info-item i {
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.store-actions-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 15px;
}

.store-actions-contact .owner-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(8, 39, 86, 0.05);
    border: 1px solid rgba(8, 39, 86, 0.1);
    color: #173d7a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.store-actions-contact .actions-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
}

.btn-visit-store {
    background: #173d7a !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border: none !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 10px rgba(23, 61, 122, 0.2) !important;
}

.btn-visit-store:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 15px rgba(23, 61, 122, 0.3) !important;
    background: #102a54 !important;
    color: #ffffff !important;
}

/* Force social icon glyphs to be blue by default, white on hover */
.social-icon-btn i {
    color: #173d7a !important;
    transition: color 0.25s ease;
}

.social-icon-btn:hover i {
    color: #ffffff !important;
}

/* Top Right Corner Store Card Share Icon Button */
.store-card.horizontal-row-card {
    position: relative !important;
}

.store-card-main-info {
    padding-right: 36px !important;
}

.store-card-corner-share-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent !important;
    border: none !important;
    color: #173d7a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: none !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 15;
    padding: 0;
}

.store-card-corner-share-btn:hover {
    background: rgba(8, 39, 86, 0.06) !important;
    color: #f7aa21;
    border: none !important;
    box-shadow: none !important;
    transform: scale(1.15);
}

.store-card-corner-share-btn i {
    transition: transform 0.2s ease;
}

/* Store Card Share Button Styles */
.share-store-btn {
    border-color: #0ea5e9 !important;
    color: #0ea5e9 !important;
    font-weight: 600 !important;
    transition: all 0.25s ease !important;
}

.share-store-btn:hover {
    background-color: #0ea5e9 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3) !important;
    transform: translateY(-1px);
}

/* Deep link highlight pulse animation */
@keyframes highlightStorePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 170, 33, 0.7);
        border-color: #f7aa21;
    }
    50% {
        box-shadow: 0 0 20px 6px rgba(247, 170, 33, 0.5);
        border-color: #f7aa21;
    }
    100% {
        box-shadow: 0 0 0 0 rgba(247, 170, 33, 0);
    }
}

.highlight-store-card {
    animation: highlightStorePulse 1.5s ease-in-out 2;
    border: 2px solid #f7aa21 !important;
    border-radius: 16px;
}

/* Premium Store Share Modal */
.store-share-modal-content {
    background: linear-gradient(145deg, #0b172a 0%, #030b18 100%) !important;
    border: 1px solid rgba(247, 170, 33, 0.25) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(247, 170, 33, 0.1) !important;
    backdrop-filter: blur(10px);
}

.share-modal-icon-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(247, 170, 33, 0.15);
    border: 1px solid rgba(247, 170, 33, 0.3);
    color: #f7aa21;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.share-store-card-preview {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.share-store-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(8, 39, 86, 0.4);
    border: 1px solid rgba(247, 170, 33, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Social Platform Action Grid */
.share-platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

@media (max-width: 480px) {
    .share-platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.share-platform-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none !important;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.share-platform-btn i {
    font-size: 1.1rem;
}

/* Platform Colors */
.share-platform-btn.whatsapp {
    background: rgba(37, 211, 102, 0.12);
    color: #25D366 !important;
    border-color: rgba(37, 211, 102, 0.25);
}
.share-platform-btn.whatsapp:hover {
    background: #25D366;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
    transform: translateY(-2px);
}

.share-platform-btn.facebook {
    background: rgba(24, 119, 242, 0.12);
    color: #1877F2 !important;
    border-color: rgba(24, 119, 242, 0.25);
}
.share-platform-btn.facebook:hover {
    background: #1877F2;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(24, 119, 242, 0.35);
    transform: translateY(-2px);
}

.share-platform-btn.twitter {
    background: rgba(255, 255, 255, 0.08);
    color: #f1f5f9 !important;
    border-color: rgba(255, 255, 255, 0.15);
}
.share-platform-btn.twitter:hover {
    background: #000000;
    color: #ffffff !important;
    border-color: #334155;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.share-platform-btn.telegram {
    background: rgba(34, 158, 217, 0.12);
    color: #229ED9 !important;
    border-color: rgba(34, 158, 217, 0.25);
}
.share-platform-btn.telegram:hover {
    background: #229ED9;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(34, 158, 217, 0.35);
    transform: translateY(-2px);
}

.share-platform-btn.email {
    background: rgba(234, 67, 53, 0.12);
    color: #ea4335 !important;
    border-color: rgba(234, 67, 53, 0.25);
}
.share-platform-btn.email:hover {
    background: #ea4335;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(234, 67, 53, 0.35);
    transform: translateY(-2px);
}

.share-platform-btn.native {
    background: rgba(247, 170, 33, 0.12);
    color: #f7aa21 !important;
    border-color: rgba(247, 170, 33, 0.25);
}
.share-platform-btn.native:hover {
    background: #f7aa21;
    color: #020b18 !important;
    box-shadow: 0 6px 16px rgba(247, 170, 33, 0.35);
    transform: translateY(-2px);
}