.store-selector-wrapper {
    position: relative;
    margin-right: 25px;
}

.store-selector-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.store-selector-btn:hover {
    color: var(--pbmit-global-color)
}

.store-selector-btn > i:first-child {
    font-size: 20px;
    color: var(--pbmit-global-color)
}

.store-selector-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.store-label {
    font-size: 11px;
    color: #666;
    font-weight: 400;
}

.store-value {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
}

.dropdown-arrow {
    font-size: 12px;
    color: #666;
    transition: transform 0.3s ease;
}

.store-dropdown-panel.show ~ .store-selector-btn .dropdown-arrow {
    transform: rotate(180deg);
}

.store-dropdown-panel {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    min-width: 420px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.store-dropdown-panel::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 55px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--pbmit-global-color);
    filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.05));
}

.store-dropdown-panel.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.store-dropdown-header {
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.dropdown-store-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.store-dropdown-body {
    padding: 25px;
}

.store-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.store-info-item:last-child {
    margin-bottom: 0;
}

.store-info-item > i {
    font-size: 18px;
    color: var(--pbmit-global-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.store-info-text {
    flex: 1;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.store-info-text a {
    color: var(--pbmit-global-color);
    text-decoration: none;
    font-weight: 600;
}

.store-info-text a:hover {
    text-decoration: underline;
}

.store-hours-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.store-hours-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
}

.store-hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.store-hour-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
}

.hour-day {
    font-weight: 600;
    color: #333;
}

.hour-time {
    color: #666;
}

.store-dropdown-footer {
    padding: 20px 25px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-action-btn {
    padding: 12px 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1199px) {
    .store-dropdown-panel {
        min-width: 380px;
    }
}

@media (max-width: 991px) {
    .store-selector-wrapper {
        margin-right: 15px;
    }
    
    .store-selector-text .store-label {
        display: none;
    }
    
    .store-dropdown-panel {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-15px);
        min-width: 350px;
    }
    
    .store-dropdown-panel.show {
        transform: translateX(-50%) translateY(0);
    }
    
    .store-dropdown-panel::before {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .store-selector-wrapper {
        margin-right: 10px;
    }
    
    .store-selector-btn {
        padding: 6px 8px;
    }
    
    .store-selector-text {
        display: none;
    }
    
    .store-dropdown-panel {
        min-width: 300px;
        max-width: calc(100vw - 30px);
    }
    
    .store-dropdown-header,
    .store-dropdown-body,
    .store-dropdown-footer {
        padding: 15px 20px;
    }
    
    .dropdown-store-name {
        font-size: 16px;
    }
    
    .store-action-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
}