/* Interactive Map Styles - Enhanced Design with Bigger Cards */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #007bff;
    min-height: 100vh;
}

.homepage-container {
    min-height: 100vh;
    position: relative;
}

/* Map Hero Section */
.map-hero-section {
    background: #007bff;
    color: white;
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.map-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-description {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Map Content Section */
.map-content-section {
    padding: 3rem 0 5rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-height: calc(100vh - 300px);
}

.map-container-wrapper {
    background: white;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    padding: 2rem;
    width: 100%;
    max-width: none;
    margin: 0;
}

/* Floor Selector Styles */
.floor-selector-section {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #dee2e6;
}

.floor-selector-header {
    text-align: center;
    margin-bottom: 2rem;
}

.floor-selector-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.floor-selector-title i {
    color: #007bff;
}

.floor-selector-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

.floor-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .floor-options {
        grid-template-columns: repeat(4, 1fr);
    }
}

.floor-option {
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    padding: 1.8rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.floor-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #007bff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.floor-option:hover {
    border-color: #007bff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.2);
}

.floor-option:hover::before {
    transform: scaleX(1);
}

.floor-option.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.4);
}

.floor-option.active::before {
    transform: scaleX(1);
    background: rgba(255, 255, 255, 0.3);
}

.floor-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floor-option.active .floor-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.floor-icon i {
    font-size: 1.8rem;
    color: #007bff;
}

.floor-option.active .floor-icon i {
    color: white;
}

.floor-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-align: center;
}

.floor-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.floor-option.active .floor-name {
    color: white;
}

.floor-count {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.floor-option.active .floor-count {
    color: rgba(255, 255, 255, 0.85);
}

.floor-option:focus {
    outline: 3px solid rgba(0, 123, 255, 0.3);
    outline-offset: 2px;
}

/* Map Controls */
.map-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
    justify-content: space-between;
}

.control-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.search-input-wrapper {
    display: flex;
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 400px;
}

.search-input-wrapper:focus-within {
    border-color: #007bff;
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.25);
    transform: translateY(-2px);
}

.search-input {
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    outline: none;
    flex: 1;
    background: transparent;
    color: #333;
    font-weight: 500;
}

.search-input::placeholder {
    color: #6c757d;
    font-weight: 400;
}

.search-btn {
    background: #007bff;
    border: none;
    color: white;
    padding: 1.2rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.search-btn:hover {
    background: #0056b3;
}

.control-btn {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 1.8rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.control-btn:focus {
    outline: 3px solid rgba(0, 123, 255, 0.3);
    outline-offset: 2px;
}

.control-btn:active {
    transform: translateY(1px);
}

.show-all-btn {
    background: #007bff;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.35);
}

.show-all-btn:hover {
    transform: translateY(-3px);
    background: #0056b3;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.45);
}

.center-btn {
    background: #007bff;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.35);
}

.center-btn:hover {
    transform: translateY(-3px);
    background: #0056b3;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.45);
}

.satellite-btn {
    background: #007bff;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.35);
}

.satellite-btn:hover {
    transform: translateY(-3px);
    background: #0056b3;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.45);
}

.coordinate-btn {
    background: #007bff;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.35);
}

.coordinate-btn:hover {
    transform: translateY(-3px);
    background: #0056b3;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.45);
}

.fullscreen-btn {
    background: #007bff;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.35);
}

.fullscreen-btn:hover {
    transform: translateY(-3px);
    background: #0056b3;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.45);
}

/* Map Main Content - Bigger Layout with Wider Map */
.map-main-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2.5rem;
    height: 1000px;
    min-height: 90vh;
}

@media (min-width: 1400px) {
    .map-main-content {
        grid-template-columns: 1fr 380px;
        height: 1100px;
        min-height: 95vh;
    }
}

@media (min-width: 1920px) {
    .map-main-content {
        grid-template-columns: 1fr 400px;
        height: 1200px;
    }
}

@media (min-width: 2560px) {
    .map-main-content {
        grid-template-columns: 1fr 420px;
        height: 1300px;
    }
}

.map-display-area {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    border: 3px solid #e9ecef;
    transition: all 0.3s ease;
}

.map-display-area:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border-color: #007bff;
}

.interactive-map {
    height: 100%;
    width: 100%;
    border-radius: 20px;
    min-height: 700px;
    position: relative;
    z-index: 1;
}

/* Map Sidebar - Enhanced */
.map-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-section {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: all 0.3s ease;
}

.sidebar-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.section-header {
    background: #007bff;
    color: white;
    padding: 1.8rem 2rem;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
}

.store-counter {
    background: rgba(255, 255, 255, 0.25);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
    margin-left: auto;
    animation: pulse 2s infinite;
    font-weight: 700;
}

.section-content {
    padding: 0;
    max-height: 600px;
    overflow-y: auto;
}

/* Store Cards - Much Bigger Design */
.store-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.store-card {
    padding: 2rem;
    border-bottom: 2px solid #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.store-card:hover {
    background: #f8f9fa;
    transform: translateX(5px);
    box-shadow: inset 5px 0 0 #007bff;
}

.store-card.selected {
    background: #007bff;
    color: white;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.store-card:last-child {
    border-bottom: none;
}

.store-card-header {
    margin-bottom: 1.2rem;
}

.store-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: inherit;
}

.store-card.selected .store-name {
    color: white;
}

.store-card-body {
    margin-bottom: 1.2rem;
}

.store-description {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.store-card.selected .store-description {
    color: rgba(255, 255, 255, 0.9);
}

.store-location {
    font-size: 1rem;
    color: #007bff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.store-card.selected .store-location {
    color: rgba(255, 255, 255, 0.8);
}

.store-card-footer {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

.store-card.selected .store-card-footer {
    border-top-color: rgba(255, 255, 255, 0.3);
}

.text-muted {
    color: #6c757d !important;
    font-size: 0.95rem;
}

.store-card.selected .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Loading and Error States */
.loading-stores, .no-stores, .error-message {
    padding: 3rem 2rem;
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
}

.loading-stores i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #007bff;
}

.map-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-loading i {
    color: #007bff;
    margin-bottom: 1rem;
}

/* Legend Section */
.legend-section {
    margin-top: 2rem;
}

.legend-section .section-header {
    padding: 1.5rem 2rem;
}

.legend-section .section-title {
    font-size: 1.2rem;
}

.legend-section .section-content {
    padding: 2rem;
    max-height: none;
    overflow: visible;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1rem;
    color: #495057;
    transition: all 0.3s ease;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
}

.legend-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.legend-text {
    font-weight: 500;
    line-height: 1.5;
    flex: 1;
}

.legend-marker {
    width: 24px;
    height: 24px;
    min-width: 24px;
    max-width: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: block;
    position: static;
}

.legend-item:hover .legend-marker {
    transform: scale(1.15);
}

/* Legend specific marker styles - separated from map markers */
.legend-store-marker {
    background: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

.legend-selected-marker {
    background: #6c757d;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
}

.legend-item:hover .legend-store-marker {
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.5);
}

.legend-item:hover .legend-selected-marker {
    box-shadow: 0 6px 16px rgba(108, 117, 125, 0.5);
}

.interaction-hint {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #f8f9fa;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border-left: 4px solid #007bff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.interaction-hint:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.interaction-hint i {
    color: #007bff;
    font-size: 1.1rem;
    min-width: 24px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.interaction-hint .legend-text {
    color: #495057;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Enhanced Modal Styles */
.store-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.store-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.store-modal {
    background: white;
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.9) translateY(50px);
    transition: all 0.3s ease;
}

.store-modal-overlay.active .store-modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    background: #007bff;
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2.5rem;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-content-grid {
    display: grid;
    gap: 2rem;
}

.store-info-section, .store-products-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #007bff;
}

.info-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.info-table {
    display: grid;
    gap: 1rem;
}

.info-row {
    display: flex;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #007bff;
    min-width: 120px;
}

.info-value {
    flex: 1;
    color: #333;
}

.modal-footer {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.modal-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.primary-btn {
    background: #007bff;
    color: white;
}

.primary-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.secondary-btn {
    background: #6c757d;
    color: white;
}

.secondary-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Image Map Specific Styles */
.image-map-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: grab;
    background: #f5f5f5;
}

.image-map-wrapper:active {
    cursor: grabbing;
}

.map-content-container {
    position: relative;
    transform-origin: center center;
    transition: transform 0.3s ease;
}

.markers-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.store-marker {
    position: absolute;
    cursor: pointer;
    pointer-events: all;
    z-index: 100;
    transition: all 0.3s ease;
}

.store-marker:hover {
    z-index: 200;
    transform: translate(-50%, -100%) scale(1.1);
}

.store-marker.selected {
    z-index: 300;
    transform: translate(-50%, -100%) scale(1.2);
}

.marker-icon {
    transition: transform 0.3s ease;
}

.marker-label {
    position: absolute;
    background: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    color: #333;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.store-marker:hover .marker-label,
.store-marker.selected .marker-label {
    opacity: 1;
}

/* Store Modal Display Override */
.store-modal-overlay {
    display: none;
}

.store-modal-overlay.active {
    display: flex !important;
}

/* Product Items in Modal */
.products-list {
    max-height: 400px;
    overflow-y: auto;
}

.product-item {
    padding: 12px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.3s ease;
}

.product-item:hover {
    background: #f8f9ff;
}

.product-item:last-child {
    border-bottom: none;
}

.loading-text {
    text-align: center;
    color: #007bff;
    padding: 20px;
}

/* Search Results Styling */
.product-search-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.product-search-item:hover {
    background: #f8f9ff;
    transform: translateX(5px);
}

.store-list-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.store-list-item:hover {
    background: #f8f9ff;
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .map-main-content {
        grid-template-columns: 1fr 300px;
        height: 800px;
    }
}

@media (max-width: 992px) {
    .map-main-content {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .map-display-area {
        height: 600px;
        margin-bottom: 2rem;
    }
    
    .map-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .map-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .control-group {
        width: 100%;
        flex-direction: column;
    }
    
    .search-input-wrapper {
        min-width: 100%;
    }

    .control-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes markerPulse {
    0% {
        transform: rotate(-45deg) scale(1);
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.5);
    }
    50% {
        transform: rotate(-45deg) scale(1.1);
        box-shadow: 0 6px 25px rgba(40, 167, 69, 0.7);
    }
    100% {
        transform: rotate(-45deg) scale(1);
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.5);
    }
}

@keyframes entrancePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.5);
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.store-card {
    animation: fadeIn 0.5s ease forwards;
}

/* Temporary Marker Styles */
.temporary-marker {
    animation: fadeIn 0.3s ease;
}

.coordinate-btn {
    transition: all 0.3s ease;
}

.coordinate-btn.active {
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.5);
}

.coordinate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.45);
}

/* Scrollbar Styling */
.section-content::-webkit-scrollbar {
    width: 6px;
}

.section-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.section-content::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 3px;
}

.section-content::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* Focus states for accessibility */
.search-input:focus,
.control-btn:focus,
.modal-btn:focus,
.nav-item:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .main-navigation,
    .map-controls,
    .map-sidebar,
    .store-modal-overlay {
        display: none !important;
    }
    
    .interactive-map {
        height: 400px !important;
        page-break-inside: avoid;
    }
}
