/* More Products Button */
.more-products-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.more-products-btn {
    padding: 14px 60px;
    font-size: var(--font-size-md);
    color: var(--text-primary);
    background-color: var(--bg-white);
    border: 1px solid var(--border-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family-primary);
    font-weight: 400;
}

.more-products-btn:hover {
    background-color: var(--bg-black);
    color: var(--text-white);
    border-color: var(--bg-black);
}

/* Offline Store Section */
.offline-store-section {
    padding: 60px 0 120px 0;
    background-color: var(--bg-white);
}

.offline-store-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1230px;
    width: 1230px;
    height: 480px;
    margin: 0 auto;
}

.offline-store-info {
    background-color: #f5f5f5;
    padding: 50px 35px 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 480px;
}

.offline-store-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #3a3a3a;
    letter-spacing: -0.5px;
}

.offline-store-description {
    font-size: 17px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 30px;
}

.offline-store-details {
    margin-bottom: 30px;
}

.offline-store-details p {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0 0 5px 0;
}

.offline-store-details .detail-label {
    font-weight: 500;
}

.offline-store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 24px 24px 23px 24px;
    font-size: 14px;
    color: #3a3a3a;
    background-color: transparent;
    border: 1px solid #7a7a7a;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family-primary);
    font-weight: 700;
    line-height: 1;
    width: fit-content;
    gap: 8px;
    text-decoration: none;
}

.offline-store-btn .btn-text {
    letter-spacing: 1px;
}

.offline-store-btn .btn-plus {
    font-size: 20px;
    font-weight: 300;
}

.offline-store-btn:hover {
    background-color: var(--bg-black);
    color: var(--text-white);
    border-color: var(--bg-black);
}

.offline-store-image {
    width: 100%;
    height: 480px;
}

.offline-store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
/* ============================================
   Mobile Responsive Design
   ============================================ */

/* 1919px ~ 1440px */
@media (max-width: 1919px) and (min-width: 1440px) {
    .offline-store-content {
        width: 1150px;
        height: 460px;
    }

    .offline-store-info {
        padding: 45px 40px 45px 55px;
        height: 460px;
    }

    .offline-store-image {
        height: 460px;
    }
}

/* 1439px ~ 1024px */
@media (max-width: 1439px) and (min-width: 1024px) {
    .offline-store-content {
        width: 100%;
        height: auto;
        max-width: 1000px;
    }

    .offline-store-info {
        padding: 45px 35px;
        height: auto;
    }

    .offline-store-image {
        height: auto;
        min-height: 420px;
    }

    .offline-store-title {
        font-size: 26px;
    }
}

/* 1023px ~ 768px */
@media (max-width: 1023px) and (min-width: 768px) {
    .offline-store-section {
        padding: 50px 0 90px 0;
    }

    .offline-store-content {
        width: 100%;
        height: auto;
        padding: 0 25px;
    }
    
    .offline-store-info {
        padding: 40px 30px;
        height: auto;
    }

    .offline-store-image {
        height: auto;
        min-height: 380px;
    }

    .offline-store-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .offline-store-description {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .offline-store-details {
        margin-bottom: 25px;
    }

    .offline-store-details p {
        font-size: 15px;
    }
}

/* 767px ~ 425px */
@media (max-width: 767px) and (min-width: 425px) {
    .offline-store-section {
        padding: 40px 0 80px 0;
    }
    
    .offline-store-content {
        grid-template-columns: 1fr;
        width: 100%;
        height: auto;
        padding: 0 20px;
    }
    
    .offline-store-info {
        padding: 35px 20px;
        order: 1;
        height: auto;
    }
    
    .offline-store-image {
        order: 2;
        height: auto;
        min-height: 300px;
    }
    
    .offline-store-title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .offline-store-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .offline-store-details {
        margin-bottom: 20px;
    }

    .offline-store-details p {
        font-size: 14px;
        line-height: 1.4;
    }

    .offline-store-btn {
        padding: 20px 22px 19px 22px;
        font-size: 13px;
        gap: 6px;
    }

    .offline-store-btn .btn-plus {
        font-size: 18px;
    }
}

/* 424px ~ 0px */
@media (max-width: 424px) {
    .offline-store-section {
        padding: 35px 0 70px 0;
    }

    .offline-store-content {
        grid-template-columns: 1fr;
        width: 100%;
        height: auto;
        padding: 0 15px;
    }

    .offline-store-info {
        padding: 30px 15px;
        order: 1;
        height: auto;
    }
    
    .offline-store-image {
        order: 2;
        height: auto;
        min-height: 250px;
    }

    .offline-store-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .offline-store-description {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 18px;
    }

    .offline-store-details {
        margin-bottom: 18px;
    }

    .offline-store-details p {
        font-size: 13px;
        line-height: 1.3;
    }
    
    .more-products-btn {
        padding: 10px 35px;
        font-size: 13px;
    }

    .offline-store-btn {
        padding: 18px 20px 17px 20px;
        font-size: 12px;
        gap: 5px;
    }

    .offline-store-btn .btn-text {
        letter-spacing: 0.5px;
    }

    .offline-store-btn .btn-plus {
        font-size: 16px;
    }
}
