/* DR Shop Engine - 프론트엔드 공통 스타일 (PURDA 톤: 그린/테라코타) */
.drshop-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 24px 0;
}
@media (max-width: 900px) {
    .drshop-products-grid { grid-template-columns: repeat(2, 1fr); }
}
.drshop-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #e0e4d5;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(47, 74, 55, 0.06);
    transition: box-shadow .15s ease, transform .15s ease;
}
.drshop-product-card:hover { box-shadow: 0 10px 26px rgba(47, 74, 55, 0.12); transform: translateY(-2px); }
.drshop-product-thumb {
    display: block;
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #f5f6f0;
}
.drshop-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.drshop-thumb-placeholder { display: block; width: 100%; height: 100%; background: #eef0e6; }
.drshop-badge-soldout, .drshop-badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}
.drshop-badge-soldout { background: #8a8f7f; }
.drshop-badge-sale { background: #a1573a; }
.drshop-product-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 14px 16px 16px;
}
.drshop-product-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(0.95rem * 1.4 * 2);
}
.drshop-product-title a { color: #2f2d26; text-decoration: none; }
.drshop-product-price {
    margin-top: auto;
    padding-top: 10px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px 8px;
}
.drshop-product-discount { color: #a1573a; font-weight: 800; font-size: 1rem; }
.drshop-product-price-final { color: #2f2d26; font-weight: 800; font-size: 1.05rem; }
.drshop-product-price-original { color: #a3a794; font-weight: 400; font-size: 0.85rem; text-decoration: line-through; }
.drshop-product-actions { display: flex; gap: 8px; margin-top: 12px; }
.drshop-product-actions .drshop-add-to-cart,
.drshop-product-actions .drshop-buy-now { flex: 1; padding: 10px 8px; font-size: 0.88rem; }
.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-pagination { display: flex; justify-content: center; gap: 6px; margin: 32px 0 12px; flex-wrap: wrap; }
.drshop-pagination .page-numbers {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e4d5;
    border-radius: 8px;
    background: #fff;
    color: #2f2d26;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}
.drshop-pagination a.page-numbers:hover { border-color: #2f4a37; color: #2f4a37; }
.drshop-pagination .page-numbers.current { background: #2f4a37; border-color: #2f4a37; color: #fff; }
.drshop-pagination .page-numbers.dots { border: none; background: none; }

/* 상품 상세 */
.drshop-single-product { max-width: 600px; margin-top: 24px; }
.drshop-single-price { font-size: 1.4rem; font-weight: 800; color: #2f2d26; margin-bottom: 8px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.drshop-single-price .drshop-product-discount { font-size: 1.4rem; }
.drshop-single-price .drshop-product-price-final { font-size: 1.4rem; }
.drshop-single-price .drshop-product-price-original { font-size: 1rem; }
.drshop-instock { color: #2f4a37; font-weight: 700; }
.drshop-single-addtocart { display: flex; gap: 10px; margin: 16px 0; }
.drshop-single-addtocart .drshop-add-to-cart,
.drshop-single-addtocart .drshop-buy-now { flex: 1; }
.drshop-qty-input { width: 70px; padding: 10px; border: 1px solid #e0e4d5; border-radius: 8px; }
.drshop-single-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 20px; }
.drshop-single-gallery img { width: 100%; border-radius: 12px; }

/* 장바구니 */
.drshop-cart-table { background: #fff; border: 1px solid #e0e4d5; border-radius: 16px; box-shadow: 0 6px 18px rgba(47, 74, 55, 0.06); overflow: hidden; }
.drshop-cart-row { display: grid; grid-template-columns: 84px 1fr auto; gap: 16px; padding: 20px; border-bottom: 1px solid #f0f1ea; align-items: center; }
.drshop-cart-row:last-child { border-bottom: 0; }
.drshop-cart-row img { width: 84px; height: 84px; object-fit: cover; border-radius: 12px; }
.drshop-cart-row-name { font-weight: 700; color: #2f2d26; text-decoration: none; display: block; margin-bottom: 8px; }
.drshop-cart-qty { display: flex; align-items: center; gap: 8px; }
.drshop-qty-minus, .drshop-qty-plus { width: 28px; height: 28px; border: 1px solid #e0e4d5; background: #fff; border-radius: 6px; cursor: pointer; }
.drshop-qty-value { width: 48px; text-align: center; border: 1px solid #e0e4d5; border-radius: 6px; padding: 4px; }
.drshop-cart-remove { border: none; background: none; color: #8a8f7f; text-decoration: underline; cursor: pointer; margin-left: 8px; }
.drshop-cart-row-total { font-weight: 800; color: #a1573a; white-space: nowrap; }
.drshop-cart-totals { display: flex; justify-content: space-between; align-items: center; padding: 20px; background: #fff; border: 1px solid #e0e4d5; border-top: 0; border-radius: 0 0 16px 16px; font-size: 1.1rem; }

/* 체크아웃 */
.drshop-checkout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 900px) { .drshop-checkout { grid-template-columns: 1fr; } }
.drshop-step { background: #fff; border: 1px solid #e0e4d5; border-radius: 16px; box-shadow: 0 6px 18px rgba(47, 74, 55, 0.06); padding: 24px; margin-bottom: 20px; }
.drshop-step h2 { font-size: 1.15rem; margin-top: 0; }
.drshop-step input, .drshop-step textarea { width: 100%; padding: 14px; border: 1px solid #e0e4d5; border-radius: 8px; margin-bottom: 12px; font-size: 1rem; box-sizing: border-box; }
.drshop-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.drshop-order-summary { background: #fff; border: 1px solid #e0e4d5; border-radius: 16px; box-shadow: 0 6px 18px rgba(47, 74, 55, 0.06); padding: 24px; }
.drshop-summary-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid #f0f1ea; }
.drshop-summary-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; }
.drshop-summary-item-name { font-weight: 700; margin-bottom: 4px; }
.drshop-summary-item-price { color: #a1573a; font-weight: 800; }
.drshop-summary-total { display: flex; justify-content: space-between; padding-top: 16px; font-size: 1.15rem; font-weight: 800; }
.drshop-checkout-error { background: #fdecea; border: 1px solid #a1573a; color: #a1573a; padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; }

/* 기획전/캠페인 배너 스트립 */
.drshop-campaign-strip {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin: 20px 0 32px;
}
.drshop-campaign-card {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(47, 74, 55, 0.08);
    aspect-ratio: 4/3;
}
.drshop-campaign-card img { width: 100%; height: 100%; object-fit: cover; }
.drshop-campaign-badge {
    position: absolute; top: 10px; left: 10px;
    background: #a1573a; color: #fff; font-size: 0.72rem; font-weight: 800;
    padding: 4px 10px; border-radius: 20px;
}
.drshop-campaign-title {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 12px 14px;
    background: linear-gradient(transparent, rgba(0,0,0,.65));
    color: #fff; font-weight: 700; font-size: 0.95rem;
}

/* 쿠폰 박스 (체크아웃) */
.drshop-coupon-box { margin: 16px 0; padding: 14px; background: #f7f8f3; border-radius: 10px; }
.drshop-coupon-input-row { display: flex; gap: 8px; }
.drshop-coupon-input-row input { flex: 1; margin-bottom: 0 !important; }
.drshop-coupon-input-row button, .drshop-coupon-applied button {
    background: #2f4a37; color: #fff; border: none; border-radius: 6px; padding: 0 16px; cursor: pointer; font-weight: 700;
}
.drshop-coupon-applied { display: flex; align-items: center; gap: 10px; color: #2f4a37; }
.drshop-coupon-message { font-size: 0.85rem; margin-top: 6px; min-height: 1.2em; }
.drshop-summary-subtotal, .drshop-summary-discount {
    display: flex; justify-content: space-between; padding: 6px 0; color: #555; font-size: 0.95rem;
}
.drshop-summary-discount { color: #a1573a; }

/* 검색/카테고리 필터 (쇼핑몰 목록) */
.drshop-shop-filters { display: flex; gap: 12px; margin: 16px 0 24px; flex-wrap: wrap; }
.drshop-shop-filters input, .drshop-shop-filters select {
    padding: 10px 14px; border: 1px solid #e0e4d5; border-radius: 8px; font-size: 0.95rem;
}
.drshop-shop-filters input[type=text] { flex: 1; min-width: 200px; }
.drshop-shop-filters button {
    background: #2f4a37; color: #fff; border: none; border-radius: 8px; padding: 10px 20px; cursor: pointer; font-weight: 700;
}

/* 관련 상품 (단일 상품 페이지) */
.drshop-related-products { margin-top: 40px; }
.drshop-related-products h2 { font-size: 1.2rem; margin-bottom: 16px; }

/* 플로팅 퀵 장바구니 아이콘 */
.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; }
.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; }
