/* TÌNH TRẠNG */
.buy-stock {
	color: var(--color-black);
    font-size: 14px;
    margin-bottom: 12px;
}
.buy-stock span {
    color: #16a34a;
    font-weight: 600;
}
/* KHUNG GIÁ */
.buy-price {
    display: flex;
    align-items: center;
    border: 1px solid var(--Navy-Blue);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 16px;
    gap: 12px;
}

/* CHỮ GIÁ */
.price-label {
    font-size: 22px;
    color: var(--color-black);
    white-space: nowrap;
}

/* GIÁ TRỊ */
.price-value {
    text-align: left;
}

.price-value .amount {
    font-size: 26px;
    font-weight: 700;
    color: var(--Navy-Blue);
}

.price-value small {
    display: block;
    font-size: 12px;
    color: var(--Navy-Blue);
    margin-top: 2px;
}

/* SỐ LƯỢNG – ĐẸP NHƯ ẢNH */
.buy-qty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.buy-qty label {
    font-size: 14px;
    min-width: 70px;
}

/* HỘP SỐ LƯỢNG */
.qty-ui {
    display: flex;
    align-items: center;
    height: 45px;
    border: 1px solid var(--Navy-Blue);
    border-radius: 6px;
    overflow: hidden;
    background: var(--color-white);
}

.qty-ui button {
    width: 36px;
    height: 36px;
    border: none;
	color: var(--Navy-Blue);
    font-size: 20px;
    cursor: pointer;
    transition: 0.2s;
	margin-bottom: 0;
}

.qty-ui input {
    width: 44px !important;
    height: 36px;
    border: none !important;
    text-align: center;
    font-size: 15px !important;
    font-weight: 500;
    outline: none;
	margin-bottom: 0;
}

/* BỎ MŨI TÊN */
.qty-ui input::-webkit-inner-spin-button,
.qty-ui input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* NÚT */
.buy-actions {
    display: flex;
    gap: 12px;
}

.btn-cart, .btn-buy {
    flex: 1;
    padding: 10px 0;
    text-align: center;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
}

/* THÊM GIỎ */
.btn-cart {
    border: 2px solid var(--Navy-Blue);
    color: var(--Navy-Blue);
    background: var(--color-white);
}

/* MUA NGAY */
.btn-buy {
    background: var(--Navy-Blue);
    color: var(--color-white);
}

.buy-actions .btn-buy:hover {
	color: var(--color-white);
}

/* icon */
.share-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 15px;
}

.share-label {
	font-size: 16px;
	font-weight: 500;
	color: var(--color-black);
	white-space: nowrap;
}

.share-icons {
	display: flex;
	gap: 8px;
}

.share-item {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.25s ease;
}

.share-item img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.share-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Breadcrumbs */
.custom-breadcrumbs {
    font-size: 17px;
    color: var(--color-black);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.custom-breadcrumbs a {
    color: var(--Navy-Blue);
    text-decoration: none;
    font-weight: 500;
}

.custom-breadcrumbs .sep {
    color: #999;
}

.custom-breadcrumbs .current {
    color: var(--color-black);
    font-weight: 600;
}

.mota {
	background: var(--color-white);
	padding: 10px;
	border-radius: 10px;
}

.pt-half {
	display: none;
}

/* MOBILE */
@media (max-width: 768px) {
    .buy-actions {
        flex-direction: column;
    }
	
	.share-item {
		width: 32px;
		height: 32px;
	}

	.share-label {
		font-size: 13px;
	}
	
	.custom-breadcrumbs {
        font-size: 15px;
    }
}
