.hs-catalog-section {
width: 100%;
padding: 60px 40px;
background-color: #FAF9F6;
box-sizing: border-box;
}
.hs-catalog-inner {
max-width: 1440px;
margin: 0 auto;
} .hs-catalog-maintitle {
font-family: 'Cormorant Garamond', serif;
font-weight: 500;
font-size: 64px;
color: #000;
text-align: center;
margin: 0 0 30px 0;
}
.hs-search-mockup {
max-width: 600px;
margin: 0 auto 60px auto;
position: relative;
border: 1px solid #000;
border-radius: 50px;
overflow: hidden;
}
.hs-search-mockup input {
width: 100%;
padding: 15px 50px 15px 25px;
border: none;
background: transparent;
font-family: 'General Sans', sans-serif;
font-size: 16px;
outline: none;
}
.hs-search-mockup button {
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
background: transparent;
border: none;
cursor: pointer;
color: #000;
} .hs-catalog-header {
display: flex;
justify-content: space-between;
align-items: flex-end;
margin-bottom: 40px;
border-bottom: 1px solid #EAEAEA;
padding-bottom: 20px;
}
.hs-catalog-status {
display: flex;
flex-direction: column;
}
.hs-watching-text {
font-family: 'General Sans', sans-serif;
font-weight: 400;
font-size: 18px;
color: #333;
margin-bottom: 5px;
}
.hs-title-count-row {
display: flex;
align-items: center;
gap: 20px;
}
.hs-dynamic-cattitle {
font-family: 'Cormorant Garamond', serif;
font-weight: 500;
font-size: 40px;
color: #000;
margin: 0 !important; text-transform: uppercase;
line-height: 0.7; }
.hs-results-count {
font-family: 'General Sans', sans-serif;
font-weight: 400;
font-size: 16px;
color: #666;
margin: 0;
transform: translateY(2px); } .hs-filter-btn {
display: inline-flex;
align-items: center;
gap: 10px;
background-color: #000;
color: #fff;
border: none;
border-radius: 50px;
padding: 10px 30px;
font-family: 'Cormorant Garamond', serif;
font-weight: 600; font-size: 20px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.hs-filter-btn:hover {
background-color: #333;
} .hs-products-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px 30px; transition: opacity 0.3s ease;
} .hs-products-grid .hs-product-card {
flex: auto; width: 100%;
} @media (max-width: 1023px) {
.hs-catalog-section { padding: 40px 20px; }
.hs-catalog-maintitle { font-size: 48px; }
.hs-catalog-header {
flex-direction: column;
align-items: flex-start;
gap: 20px;
}
.hs-filter-btn { width: 100%; justify-content: center; }
.hs-products-grid {
grid-template-columns: repeat(2, 1fr);
gap: 20px 15px;
}
}
@media (max-width: 480px) {
.hs-products-grid { grid-template-columns: 1fr; }
}