/* Tabs Styling (Underlined & Scrollable) */
.pg-5a4c3069-tabs-wrapper {
    margin-bottom: 40px;
    font-family: inherit;
}
.pg-5a4c3069-tabs-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #E2E8F0;
}
.pg-5a4c3069-tabs-label {
    font-weight: 600;
    color: #475569;
    margin-right: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.pg-5a4c3069-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    scroll-behavior: smooth;
}
.pg-5a4c3069-tabs::-webkit-scrollbar {
    display: none;
}
.pg-5a4c3069-tabs li {
    margin-right: 30px;
}
.pg-5a4c3069-tab {
    display: inline-block;
    padding: 12px 0;
    color: #64748B;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.pg-5a4c3069-tab:hover {
    color: #0F172A;
}
.pg-5a4c3069-tab.active {
    color: #0F172A;
    font-weight: 600;
}
.pg-5a4c3069-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0F172A;
    transition: width 0.3s ease;
}
.pg-5a4c3069-tab.active::after,
.pg-5a4c3069-tab:hover::after {
    width: 100%;
}

/* Professional Grid Styling */
.pg-5a4c3069-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.pg-5a4c3069-item {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}
.pg-5a4c3069-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: #CBD5E1;
    transform: translateY(-2px);
}
.pg-5a4c3069-img {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background: #F8FAFC;
    overflow: hidden;
}
.pg-5a4c3069-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s ease;
}
.pg-5a4c3069-item:hover .pg-5a4c3069-img img {
    transform: scale(1.05);
}
.pg-5a4c3069-content {
    padding: 20px 20px 10px;
    flex-grow: 1;
}
.pg-5a4c3069-title {
    font-size: 16px;
    font-weight: 600;
    color: #0F172A;
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pg-5a4c3069-price {
    color: #475569;
    font-weight: 500;
    font-size: 15px;
}
.pg-5a4c3069-price ins {
    text-decoration: none;
    color: #0F172A;
}
.pg-5a4c3069-price del {
    color: #94A3B8;
    font-size: 13px;
    margin-right: 8px;
}
.pg-5a4c3069-action {
    padding: 0 20px 20px;
}
.pg-5a4c3069-item a {
    text-decoration: none;
}
.pg-5a4c3069-item .button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 15px;
    background: white;
    color: #0F172A;
    border: 1px solid #CBD5E1;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}
.pg-5a4c3069-item .button:hover {
    background: #0F172A;
    color: white;
    border-color: #0F172A;
}
.pg-5a4c3069-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #F8FAFC;
    color: #475569;
    border-radius: 4px;
    font-size: 16px;
}
