/** Shop 
 **************************************************************** **/
/* filter options */
#shop .top-shop-option p {
	height: 50px;
	line-height: 50px;
}

/** Shop List 
 **************************************************************** **/
#shop .item-box-desc h4 {
	font-size: 17px;
	letter-spacing: -1px;
	margin-bottom: 5px;
	height: 45px; 
	line-height: 1.3em; /* Menentukan tinggi baris agar pas dengan height */
	overflow: hidden;

	/* Teknik Line Clamp */
	display: -webkit-box;
	-webkit-line-clamp: 2; 
	-webkit-box-orient: vertical;
}

#shop .item-box figure {
	height: 260px;
	overflow: hidden; 
}

#shop .item-box figure img {
	margin: auto;
	width: 100%;
	height: 100%;
	object-fit: cover; 
}

#shop .item-box-desc {
	height: 100px;
	padding: 10px;
}

#shop .item-box-desc small {
	font-size: 16px;
	margin-bottom: 0;
}

#shop .item-box-desc small span {
	color: #999;
	font-size: 14px;
	text-decoration: line-through;
}

#shop .item-box a {
	text-decoration: none;
}

#shop .item-box .add_to_cart {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	z-index: 10;
}

/* Container Utama Detail Produk */
.detail-container-white {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 6px 0 rgba(49, 53, 59, 0.12); /* Shadow halus ala Tokped */
    margin-bottom: 30px;
}

/* Menghilangkan background abu-abu bawaan template jika ada */
#shop {
    background-color: #f8f9fa; /* Warna dasar halaman abu sangat muda */
    padding-bottom: 40px;
}

/* Pengaturan Tab agar menyatu dengan background putih */
.nav-tabs {
    border-bottom: 2px solid #f0f0f0;
}

.tab-content {
    background: #fff;
    border: none;
}


/** Shop Cart 
 **************************************************************** **/
#cartContent {
	padding: 20px 0;
}

#cartContent table {
	width: 100%;
}

#cartContent table th {
	background: #f6f6f6;
	padding: 10px;
	border-bottom: 2px solid #eee;
}

#cartContent table td {
	padding: 15px 10px;
	border-bottom: 1px solid #eee;
	vertical-align: middle;
}

#cartContent .product_name {
	font-weight: bold;
	display: block;
}

#cartContent .btn_remove {
	color: #cc0000;
	font-size: 12px;
	text-decoration: none;
}

#cartContent .total {
	text-align: right;
	font-weight: bold;
	padding: 10px 0;
	width: 200px;
}
/* Styling ala Tokopedia */
.mb-20 { margin-bottom: 20px; }
.mt-20 { margin-top: 20px; }

.panel-beli-sticky {
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    background: #fff;
}

.product-title-tokped {
    line-height: 1.4;
    color: #212121;
}

/* Tab styling agar lebih clean */
.nav-tabs {
    border-bottom: 1px solid #eee;
}
.nav-tabs > li > a {
    color: #666;
    border: none !important;
    background: none !important;
}
.nav-tabs > li.active > a {
    color: #03ac0e !important;
    border-bottom: 2px solid #03ac0e !important;
}

/* Qty Input styling */
.input-qty::-webkit-inner-spin-button,
.input-qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}