@charset "UTF-8";
/*  메인 페이지 스타일 파일입니다. */

/* Mobile Responsive */
@media (max-width: 768px) {

  .store-section {
    display: flex; /* ✅ 플렉스 적용 */
    flex-direction: column; /* ✅ 세로 정렬 */
    text-align: center;
    background: #f4f4f4;
  }

  .store-image {
    width: 100%;
    height: 280px;
    background-image: url('https://pvm-e30ky4tv-4v4nbf90.shopby.co.kr/assets/images/GOCHUK.PNG');
    background-size: cover;
    background-position: center;
    order: -1; /* ✅ 플렉스라 효과가 생김 */
  }

  .store-text {
    padding: 30px 20px;
  }

  .store-text h2 {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .store-text p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #222;
  }

  .store-text p:first-of-type {
    margin-bottom: 8px;
  }

  .store-btn {
    display: inline-block;
    font-size: 14px;
    padding: 8px 20px;
    border: 1px solid #222;
    color: #222;
    text-decoration: none;
    transition: 0.3s;
  }

  .store-btn:hover {
    background: #222;
    color: #fff;
  }
}
