/* DR Shop Engine - 코어 스타일. 플로팅 퀵 장바구니 아이콘 + 미니 장바구니 드로어는
   wp_footer 훅으로 사이트 전체 모든 페이지에 렌더링되므로, 이 파일은 항상 로드된다.
   나머지(쇼핑몰/상품상세/장바구니/체크아웃 전용 스타일)는 해당 페이지에서만 별도 로드. */

/* 홈페이지 폭 확장 (요청에 따라) - 홈은 숏코드가 아니라 body.home으로 구분되어 항상 로드 필요. */
body.home .grid-container { max-width: 1600px; }

/* 장바구니 담기/바로구매/주문하기 버튼 - 상품카드·상세·장바구니·체크아웃 등 여러 컨텍스트에서 공용으로 쓰여
   페이지별로 쪼개지 않고 코어에 둠(중복 방지). */
.drshop-add-to-cart, .drshop-place-order, .drshop-checkout-btn {
    background: #2f4a37;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}
.drshop-add-to-cart:hover, .drshop-place-order:hover, .drshop-checkout-btn:hover { background: #26392c; }
.drshop-add-to-cart:disabled, .drshop-buy-now:disabled { background: #d8dccf; color: #fff; cursor: not-allowed; }
.drshop-buy-now {
    background: #fff;
    color: #a1573a;
    border: 1px solid #a1573a;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 700;
    cursor: pointer;
}
.drshop-buy-now:hover { background: #fdf3f0; }
.drshop-place-order, .drshop-checkout-btn { background: #a1573a; width: 100%; text-align: center; margin-top: 16px; }
.drshop-place-order:hover, .drshop-checkout-btn:hover { background: #8c4b2f; }

/* 플로팅 퀵 장바구니 아이콘 */
.drshop-quick-cart {
    position: fixed;
    right: 24px;
    bottom: 100px;
    z-index: 9000;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #2f4a37;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(47, 74, 55, 0.28);
    text-decoration: none;
    transition: transform .15s ease, background .15s ease;
}
.drshop-quick-cart:hover { background: #26392c; transform: translateY(-2px); color: #fff; }
.drshop-quick-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 4px;
    border-radius: 10px;
    background: #a1573a;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px #fff;
}
@media (max-width: 600px) {
    .drshop-quick-cart { right: 16px; bottom: 84px; width: 48px; height: 48px; }
}

/* 미니 장바구니 드로어 */
.drshop-mini-cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(30, 34, 24, 0.4);
    z-index: 9100;
}
.drshop-mini-cart-drawer {
    position: fixed;
    top: 0;
    right: -380px;
    width: 340px;
    max-width: 88vw;
    height: 100%;
    background: #fff;
    z-index: 9200;
    box-shadow: -8px 0 24px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    transition: right .25s ease;
}
.drshop-mini-cart-drawer.is-open { right: 0; }
.drshop-mini-cart-overlay.is-open { display: block; }
.drshop-mini-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f1ea;
}
.drshop-mini-cart-header strong { font-size: 1.02rem; color: #2f4a37; }
.drshop-mini-cart-header button {
    border: none; background: none; font-size: 1.4rem; line-height: 1; cursor: pointer; color: #8a8f7f;
}
.drshop-mini-cart-body { flex: 1; overflow-y: auto; padding: 12px 20px; }
.drshop-mini-cart-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f5f6ef; }
.drshop-mini-cart-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; }
.drshop-mini-cart-item-name { font-weight: 700; font-size: 0.9rem; color: #2f2d26; margin-bottom: 4px; word-break: keep-all; overflow-wrap: break-word; }
.drshop-mini-cart-item-meta { font-size: 0.85rem; color: #8a8f7f; }
.drshop-mini-cart-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 20px 20px;
    border-top: 1px solid #f0f1ea;
}
.drshop-mini-cart-view, .drshop-mini-cart-checkout {
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
}
.drshop-mini-cart-view { background: #f0f1ea; color: #2f4a37; }
.drshop-mini-cart-checkout { background: #a1573a; color: #fff; }
.drshop-mini-cart-view:hover { background: #e6e8db; }
.drshop-mini-cart-checkout:hover { background: #8c4b2f; }
