/* CSS Document */
:root {
 --primary-color: #E01761;
 --secondary-color: #595959;
 --bg-light: #FAFAFA;
 --text-dark: #1A1C1C;
 --text-muted: #737373;
 --border-color: #EEEEEE;
 --hover-bg: rgba(224, 23, 97, 0.05);
}
#wrapper .seller-shop-wrap {
	background-color: #FFFFFF;
	color: #262626;
	font-family: "Raleway", "Lato", "Microsoft JhengHei", sans-serif;
}
/* Top Bar 樣式復刻 (Figma: bar) */
.seller-shop-wrap .shop-bar-top {
	background-color: #FAFAFA;
	height: 40px;
	border-bottom: 1px solid #EEEEEE;
	display: flex;
	align-items: center;
}
.seller-shop-wrap .shop-bar-top .btn-expert {
	color: #E01761;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	transition: opacity 0.3s;
}
.seller-shop-wrap .shop-bar-top .btn-expert:hover {
	opacity: 0.8;
}
.seller-shop-wrap .shop-bar-top .icon-down {
	font-size: 10px;
	margin-left: 4px;
	color: #E01761;
}
.seller-shop-wrap .shop-bar-top .text-divider {
	color: #8C8C8C;
	margin: 0 15px;
}
.seller-shop-wrap .shop-bar-top .text-map {
	color: #8C8C8C;
	font-size: 14px;
}
/* 大橫幅樣式 (Figma: Rectangle 35) */
.seller-shop-wrap .hero-banner-large {
	width: 100%;
	min-height: 200px;
	background-color: #F8F9FA;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.1);
	margin-top: 24px;
}
.seller-shop-wrap .hero-banner-large a,
.seller-shop-wrap .hero-banner-large img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 200px;
}
.seller-shop-wrap .hero-banner-large img {
    object-fit: cover;
    object-position: center center;
}
/* 三格廣告組 (Figma: Frame 3233924) */
.seller-shop-wrap .ad-grid-row {
	margin-top: 40px;
}
.seller-shop-wrap .ad-item-card {
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.3s;
}
.seller-shop-wrap .ad-item-card:hover {
	transform: translateY(-5px);
}
.seller-shop-wrap .ad-item-card img {
	width: 100%;
	height: auto;
	display: block;
}
/* 商店列表區塊 (Figma: Product Grid) */
.seller-shop-wrap .store-grid-container {
    margin: 60px 0;
}

.seller-shop-wrap .store-heading {
	margin-bottom: 40px;
	border-bottom: 2px solid #EEEEEE;
	padding-bottom: 20px;
}
.seller-shop-wrap .store-heading .title-main {
	color: #D81B60;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 5px;
	letter-spacing: 0.5px;
}
.seller-shop-wrap .store-heading .subtitle-sub {
	color: #5F5E5E;
	font-size: 15px;
}
.seller-shop-wrap .btn-view-more {
	color: #D81B60;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none !important;
}
/* 商店項目卡片 (Figma: Frame 59) */
.seller-shop-wrap .store-item-card {
	background: #FFFFFF;
	border: 1px solid #F0F0F0;
	border-radius: 8px;
	padding: 12px;
	position: relative;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.15);
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.seller-shop-wrap .store-item-card:hover {
	transform: translateY(-8px);
	box-shadow: 4px 12px 30px rgba(0, 0, 0, 0.2);
}
.seller-shop-wrap .store-item-card img {
	max-width: 100%;
	max-height: 90px;
	object-fit: contain;
}
/* 卡片懸浮按鈕 (Figma: add to wishlist) */
.seller-shop-wrap .store-item-card .action-btns {
	position: absolute;
	right: 15px;
	bottom: 15px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	opacity: 0;
	transform: translateX(10px);
	transition: all 0.3s;
}
.seller-shop-wrap .store-item-card:hover .action-btns {
	opacity: 1;
	transform: translateX(0);
}
.seller-shop-wrap .action-btn-circle {
	width: 40px;
	height: 40px;
	background: #FFFFFF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	color: #616161;
	text-decoration: none !important;
	font-size: 18px;
	border: 1px solid #F0F0F0;
}
.seller-shop-wrap .action-btn-circle:hover {
	background-color: #D81B60;
	color: #FFFFFF;
	border-color: #D81B60;
}
/* 標籤樣式 (Figma: Badges) */
.seller-shop-wrap .badge-stack {
	position: absolute;
	top: 12px;
	left: 12px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.seller-shop-wrap .store-badge {
	font-size: 12px;
	padding: 4px 12px;
	border-radius: 16px;
	color: #FFFFFF;
	font-weight: 600;
	text-align: center;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.seller-shop-wrap .badge-orange {
	background-color: #F87951;
}
.seller-shop-wrap .badge-yellow {
	background-color: rgba(245, 199, 77, 0.9);
}

/* 響應式微調 */
@media (max-width: 767px) {
.seller-shop-wrap .store-item-card {
	padding: 10px;
}
}

/* Product Cards */
#shop-home .product-card {
	background: #FFFFFF;
	border-radius: 12px;
	padding: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid transparent;
}
#shop-home .product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(0,0,0,0.1);
	border-color: var(--hover-bg);
}
#shop-home .product-img-wrap {
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 1/1;
	background: #F5F5F5;
	position: relative;
}
#shop-home .product-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#shop-home .product-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--primary-color);
	color: #FFF;
	font-size: 11px;
	padding: 2px 8px;
	border-radius: 4px;
	font-weight: 700;
}
#shop-home .product-info {
	padding: 15px 5px 5px;
	flex-grow: 1;
}
#shop-home .product-category {
	font-size: 11px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 5px;
}
#shop-home .product-title {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 10px;
	height: 44px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	color: #333;
}
#shop-home .product-price {
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 800;
	display: flex;
	justify-content: space-between;
}
#shop-home .product-title a {
    color: #444;
    transition: all 0.2s ease;
}
#shop-home .product-title:hover a {
    color: var(--main-color);
}
.product-category span {
    background-color: rgba(216,27,96,0.1);
    color: #D81B60;
    font-size: 0.75rem;
    display: inline-block;
    padding: 0.25rem 1rem;
}
.product_price_list {
    color: #999;
}
.product_price_sell {
    margin-right: 0.5rem;
}
.title-block h1, .title-block h2, .title-block h3, .title-block h4 {
    line-height: 1;
}