* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', serif;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(224, 224, 224, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0,3rem 16%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3.5rem;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    font-weight: 300;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 28px;
    height: 1px;
    background: #1a1a1a;
    transition: all 0.3s;
}

/* Main Content */
main {
    margin-top: 100px;
    min-height: calc(100vh - 200px);
}

.stores-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 8% 140px;
}

.page-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: #1a1a1a;
}

.page-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Filter Section */
.filter-section {
    text-align: center;
    margin-bottom: 5rem;
}

.filter-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    color: #999;
    margin-bottom: 1.5rem;
    display: block;
}

.dropdown-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 400px;
}

.dropdown-selected {
    padding: 1rem 2.5rem;
    border: 1px solid #d8d8d8;
    background: #ffffff;
    color: #666;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-selected:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.3s;
}

.dropdown-selected.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #d8d8d8;
    max-height: 0;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
}

.dropdown-menu.active {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    padding: 0.9rem 2rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid #f5f5f5;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #fafafa;
    color: #1a1a1a;
}

.dropdown-item.selected {
    background: #1a1a1a;
    color: #ffffff;
}

/* Store Cards */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}

.store-card {
    background: #fafafa;
    border: 1px solid #e8e8e8;
    padding: 2.5rem 2rem;
    transition: all 0.4s;
    display: none;
}

.store-card.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.store-card:hover {
    border-color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.store-name {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-family: 'Georgia', serif;
}

.store-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    opacity: 0.6;
}

.info-text {
    font-size: 0.9rem;
    color: #666;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    flex: 1;
}

.info-text a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.info-text a:hover {
    border-bottom-color: #1a1a1a;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    display: none;
}

.no-results.show {
    display: block;
}

.no-results-text {
    font-size: 1.1rem;
    color: #999;
    font-family: 'Georgia', serif;
    margin-bottom: 0.5rem;
}

/* Wholesale Info */
.wholesale-info {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 6%;
    text-align: center;
}

.wholesale-title {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.wholesale-text {
    font-size: 1rem;
    line-height: 1.8;
    font-family: 'Georgia', serif;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.wholesale-button {
    display: inline-block;
    padding: 1.1rem 3.5rem;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s;
}

.wholesale-button:hover {
    background: #ffffff;
    color: #1a1a1a;
}

/* Footer */
footer {
    background: #ffffff;
    color: #ffffff;
    padding: 2rem 8%;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.social-links a {
    color: #000000;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}