/* 店取門市頁面樣式 */
.page-banner.store {
    background-image: url("./../src/store/subpic_product 1.png")
}

.main {
    background-color: #F0EAE2;
}

.store-filter {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 24px 0;
    margin-top: -50px;
}

.filter-btn {
    padding: 6px 60px;
    border: 1px solid #9C1D22;
    background: transparent;
    color: #9C1D22;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #9C1D22;
    color: #fff;
}

.filter-btn.active {
    background: #9C1D22;
    color: #fff;
}

.store-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.store-item {
    padding: 16px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 40px;
    padding-top: 30px;
}

.store-item .line {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 95px;
    width: 2px;
    background-color: #E5D5C5;
}

.store-item:last-child {
    border-right: none;
}

.store-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 95px;
    width: 2px;
    background-color: #E5D5C5;
}

.store-item.first-in-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 95px;
    width: 2px;
    background-color: #E5D5C5;
    display: block;
}

.store-title {
    color: #BB956A;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

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

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.info-item img {
    width: 24px;
    height: 24px;
    margin-top: 2px;
    filter: invert(70%) sepia(11%) saturate(1095%) hue-rotate(357deg) brightness(89%) contrast(86%);
}

.info-item span {
    color: #333333;
    font-size: 16px;
    line-height: 1.8;
}

.product-container {
    width: 100%;
    max-width: 1420px;
    margin-bottom: 50px;
    margin-top: 30px;
}

@media screen and (max-width: 768px) {
    .store-filter {
        flex-wrap: wrap;
        gap: 8px;
        padding: 0 16px;
        margin-top: 30px;
    }

    .filter-btn {
        padding: 6px 30px;
        width: calc(50% - 8px);
        font-size: 16px;
    }

    .store-list {
        grid-template-columns: 1fr;
        padding: 16px;
        padding-bottom: 0px;
        padding-top: 0px;
    }
    
    .store-item {
        border: none;
        border-bottom: 2px solid #E5D5C5;
        padding: 12px;
        padding-top: 20px;
        padding-bottom: 30px;
    }
    
    .store-item:last-child {
       
        border-bottom: 2px solid #E5D5C5;
    }

    .store-item::after,
    .store-item::before{
        display: none;
    }

    .store-title {
        font-size: 16px;
    }

    .info-item span {
        font-size: 14px;
    }
}

