/* Fira Sans is imported via helper in PHP */

.hpt-container {
    font-family: 'Fira Sans', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.hpt-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #333;
    font-style: italic;
    font-family: "Fira Sans", Sans-serif;
    text-align: center;
}

.hpt-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-family: "Fira Sans", Sans-serif;
}

.hpt-tab {
    cursor: pointer;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: #888;
    transition: all 0.3s ease;
    position: relative;
}

.hpt-tab:hover,
.hpt-tab.active {
    color: #333;
    font-weight: 500;
}

.hpt-tab.active::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #333;
}

.hpt-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.hpt-content.active {
    display: block;
}

.hpt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}

.hpt-product-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    /* box-shadow: 0 4px 6px rgba(0,0,0,0.05); */
    transition: transform 0.3s ease;
}

.hpt-product-card:hover {
    transform: translateY(-5px);
}

.hpt-product-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    background-color: #f9f9f9; /* Fallback for transparent images */
}

.hpt-product-title {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 5px;
    color: #333;
    font-family: "Fira Sans", Sans-serif;
    height: 50px;
}

.hpt-product-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: "Fira Sans", Sans-serif;
}

.hpt-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hpt-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    font-family: "Fira Sans", Sans-serif;
}

.hpt-shop-now {
    background-color: #f0f0f0;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    font-family: "Fira Sans", Sans-serif;
}

.hpt-shop-now:hover {
    background-color: #e0e0e0;
}

.hpt-view-all {
    margin-top: 30px;
    text-align: right;
}

.hpt-view-all a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.hpt-view-all a:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
