/* === Custom Product Info Styles === */

.custom-product-info-wrapper {
    margin-bottom: 20px; /* Khoảng cách với phần dưới */
    font-size: 14px; /* Cỡ chữ cơ bản */
}

.product-info-item {
    margin-bottom: 8px; /* Giảm khoảng cách giữa các dòng */
    padding-bottom: 8px; /* Khoảng cách dưới trước khi thêm viền */
    border-bottom: 1px solid #eee; /* Viền dưới nhẹ nhàng hơn */
    position: relative; /* Cần thiết cho popup định vị tuyệt đối */
    line-height: 1.5; /* Cải thiện khả năng đọc */
    display: flex; /* Sử dụng flexbox để căn chỉnh icon và text */
    align-items: center; /* Căn giữa theo chiều dọc */
}

.product-info-item:last-child {
    margin-bottom: 0;
    border-bottom: none; /* Không cần viền cho dòng cuối */
    padding-bottom: 0;
}

.product-info-item .info-icon {
    width: 18px; /* Kích thước icon */
    height: 18px;
    margin-right: 8px; /* Khoảng cách với text */
    flex-shrink: 0; /* Không co lại khi text dài */
}

.product-info-item .info-label strong {
    font-weight: 600; /* Độ đậm vừa phải */
    margin-right: 5px;
}
.product-info-item .info-value {
   /* Phần giá trị sẽ tự động giãn ra */
}

.product-info-item .info-value a.info-term-link {
    color: #0073aa; /* Màu link mặc định của WP Admin, có thể đổi */
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-info-item .info-value a.info-term-link:hover {
    color: #a10000; /* Màu khi hover */
    text-decoration: none;
}

/* --- Toggle Icon and Popup --- */

.toggle-icon {
    cursor: pointer;
    color: #a10000; /* Màu icon/link xem thêm */
    margin-left: 5px;
    font-weight: bold;
    display: inline-block; /* Để không bị xuống dòng */
    user-select: none; /* Ngăn chọn text khi click */
}

.toggle-icon:hover .small-text {
    text-decoration: underline;
}

.toggle-icon .small-text {
    font-size: 11px; /* Chữ nhỏ hơn */
    font-weight: normal;
    color: #555; /* Màu xám nhẹ */
}

/* Popup Styles */
.details-popup {
    display: none; /* Mặc định ẩn */
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    padding: 10px 15px;
    z-index: 100; /* Đảm bảo nổi lên trên */
    width: 220px; /* Độ rộng popup */
    top: 100%; /* Hiển thị ngay dưới dòng hiện tại */
    left: 26px; /* Vị trí cách lề trái (icon + label) */
    margin-top: 5px; /* Khoảng cách nhỏ với dòng */
    border-radius: 3px;
    font-size: 13px; /* Cỡ chữ trong popup */
}

.details-popup .popup-title {
    background-color: #a10000;
    color: white;
    padding: 8px 12px;
    display: block;
    margin: -10px -15px 10px -15px; /* Full width title */
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    font-size: 14px;
    font-weight: bold;
}

.details-popup p {
    margin: 5px 0;
    line-height: 1.4;
}
.details-popup p:last-child {
    margin-bottom: 0;
}

.details-popup a {
    color: #0073aa;
    text-decoration: none;
}

.details-popup a:hover {
    color: #a10000;
}

/* Wine Tag (Nếu có sử dụng) */
.wine-tag {
    color: #FF0000;
    text-decoration: none;
}

.wine-tag:hover {
    color: #800000;
    text-decoration: none;
}