body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.text-ciano { color: #326168; }
.access-button {
    background-color: #F6706D;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.access-button:hover {
    background-color:#326168;
    transform: scale(1.05);
}
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0 0 0.75rem 0.75rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.carousel-slide {
    display: flex;
    position: relative;
    width: 100%;
    height: 250px;
}
@media (min-width: 640px) {
    .carousel-slide { height: 350px; }
}
@media (min-width: 1024px) {
    .carousel-slide { height: 450px; }
}
.carousel-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    object-position: center center;
}
.carousel-slide img[src="assets/banner1.png"] {
    object-position: center center;
}
.carousel-slide img[src="assets/banner2.png"] {
    object-position: 75% 50%;
}
.carousel-slide img.active {
    opacity: 1;
}
@media (max-width: 768px) {
    .carousel-slide img[src="assets/banner2.png"] {
        object-position: 80% 50%;
    }
}
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 768px) {
    .carousel-button { padding: 1rem; }
}
.carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.6);
}
.carousel-button.left { left: 1rem; }
.carousel-button.right { right: 1rem; }
.grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .grid-layout.sm-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
    .grid-layout.md-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .grid-layout.lg-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.icon-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background-color: #f8fafc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.icon-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.icon-feature img {
    height: 3rem;
    width: auto;
    margin-bottom: 0.75rem;
    filter: invert(60%) sepia(38%) saturate(3019%) hue-rotate(320deg) brightness(100%) contrast(95%);
    transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
}
.icon-feature:hover img {
    transform: scale(1.1);
    filter: invert(30%) sepia(21%) saturate(1917%) hue-rotate(145deg) brightness(94%) contrast(88%);
}
.products-section-title {
    font-size: 1.75rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #326168;
    position: relative;
    padding-bottom: 0.5rem;
}
@media (min-width: 768px) {
    .products-section-title { font-size: 2.5rem; margin-bottom: 2rem; }
}
.products-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #F6706D;
    border-radius: 2px;
}
@media (min-width: 768px) {
    .products-section-title::after { width: 80px; }
}
.product-card-with-image {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    position: relative;
    padding-bottom: 1rem;
}
.product-card-with-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}
.product-icon-container {
    position: absolute;
    top: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 0.5rem;
    border-radius: 9999px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    z-index: 1;
}
.product-card-with-image:hover .product-icon-container {
    transform: translateX(-50%) scale(1.1);
}
.product-icon-container img {
    width: 2rem;
    height: 2rem;
    filter: none;
}
@media (min-width: 768px) {
    .product-icon-container { padding: 0.75rem; top: -1.5rem; }
    .product-icon-container img { width: 2.5rem; height: 2.5rem; }
}
.product-image-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}
@media (min-width: 768px) {
    .product-image-container { height: 200px; }
}
.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.catalog-button {
    background-color: #F6706D;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out, box-shadow 0.2s ease-in-out;
    width: 100%;
    font-size: 0.95rem;
}
@media (min-width: 640px) {
    .catalog-button { width: auto; }
}
.catalog-button:hover {
    background-color: #326168;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(50, 97, 104, 0.4);
}
.download-button, .learn-more-button {
    background-color: #326168;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    width: 100%;
    transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out;
}
@media (min-width: 640px) {
    .download-button, .learn-more-button { width: auto; }
}
.download-button:hover {
    background-color: #F6706D;
    transform: translateY(-2px);
}
.learn-more-button:hover {
    filter: brightness(110%);
    transform: translateY(-2px);
}
.testimonials-section {
    background-color: #f8fafc;
}
.testimonials-section-title {
    font-size: 1.75rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #326168;
    position: relative;
    padding-bottom: 0.5rem;
    line-height: 1.2;
}
@media (min-width: 768px) {
    .testimonials-section-title { font-size: 2.5rem; margin-bottom: 2rem; }
}
.testimonials-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #F6706D;
    border-radius: 2px;
}
.testimonials-carousel-container-new {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}
@media (min-width: 768px) {
    .testimonials-carousel-container-new { padding: 0 4rem; }
}
.testimonials-carousel-track-new {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    min-height: 300px;
}
@media (min-width: 768px) {
    .testimonials-carousel-track-new { min-height: 250px; }
}
.testimonials-carousel-item-new {
    width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
    padding: 0 10px;
}
.testimonials-carousel-item-new.active {
    opacity: 1;
    position: relative;
    z-index: 2;
}
.testimonials-carousel-button-new {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(50, 97, 104, 0.8);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
}
@media (min-width: 768px) {
    .testimonials-carousel-button-new { display: flex; width: 3rem; height: 3rem; }
}
.testimonials-carousel-button-new:hover {
    background-color: #F6706D;
}
.testimonials-carousel-button-new.left { left: 0; }
.testimonials-carousel-button-new.right { right: 0; }
.testimonial-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    margin: 0 auto;
    max-width: 100%;
}
@media (min-width: 768px) {
    .testimonial-card { padding: 2rem; }
}
.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.testimonial-card p.italic {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 1rem;
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}
.testimonial-card .author-info {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}
.testimonial-card .author-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.75rem;
    border: 2px solid #326168;
}
@media (min-width: 768px) {
    .testimonial-card .author-info img { width: 50px; height: 50px; margin-right: 1rem; }
}
.testimonial-card .author-details {
    text-align: left;
}
.testimonial-card .author-details .font-bold {
    color: #326168;
    font-size: 0.95rem;
}
.testimonial-card .author-details .text-sm {
    color: #F6706D;
    font-size: 0.8rem;
}
.testimonial-card .stars {
    color: #F6706D;
    margin-top: 0.5rem;
    font-size: 0.8rem;
}
.atendimento-section {
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden;
}
.atendimento-card {
    background-color: #f8fafc;
    border-radius: 0.75rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    max-width: 800px;
    margin: 2rem auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s 0.2s ease-out forwards;
}
@media (min-width: 768px) {
    .atendimento-card {
        flex-direction: row;
        justify-content: space-between;
        padding: 2.5rem;
        gap: 2rem;
    }
}
.atendimento-icon {
    font-size: 2.5rem;
    color: #326168;
    flex-shrink: 0;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}
@media (min-width: 768px) {
    .atendimento-icon { font-size: 3rem; }
}
.atendimento-card:hover .atendimento-icon {
    transform: scale(1.1) rotate(-5deg);
    color: #F6706D;
}
.atendimento-info {
    text-align: center;
    flex-grow: 1;
}
@media (min-width: 768px) {
    .atendimento-info { text-align: left; }
}
.atendimento-info .atendimento-aviso {
    color: #F6706D;
    font-weight: 500;
}
.status-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 9999px;
    transition: all 0.3s ease-in-out;
    min-width: 140px;
    text-align: center;
    border: 2px solid transparent;
    width: 100%;
}
@media (min-width: 768px) {
    .status-tag { width: auto; }
}
.status-tag.loading { background-color: #e5e7eb; color: #6b7280; animation: pulse 1.5s infinite ease-in-out; }
.status-tag.aberto { background-color: #dcfce7; color: #166534; border-color: #86efac; box-shadow: 0 2px 4px rgba(22, 101, 52, 0.1); }
.status-tag.prestes-a-fechar { background-color: #fef3c7; color: #854d0e; border-color: #fde047; box-shadow: 0 2px 4px rgba(133, 77, 14, 0.1); }
.status-tag.fechado { background-color: #fee2e2; color: #991b1b; border-color: #fca5a5; box-shadow: 0 2px 4px rgba(153, 27, 27, 0.1); }
.accordion-header { transition: background-color 0.2s ease-in-out; }
.accordion-header:hover { background-color: #f9fafb; }
.accordion-header .fa-chevron-down { transition: transform 0.3s ease-in-out; color: #F6706D; }
.accordion-header.active { background-color: #f9fafb; }
.accordion-header.active .fa-chevron-down { transform: rotate(180deg); }
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
    background-color: #fdfdfd;
    color: #4b5563;
    line-height: 1.6;
}
.accordion-content p { padding: 0.25rem 0; }
.accordion-content ul { list-style-type: disc; list-style-position: inside; padding-left: 0.5rem; margin-top: 0.5rem; }
.accordion-content a { color: #F6706D; text-decoration: underline; transition: color 0.2s; }
.accordion-content a:hover { color: #326168; }
.contact-card {
    display: block;
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 1px solid #e5e7eb;
}
@media (min-width: 768px) {
    .contact-card { padding: 2rem; }
}
.contact-card:hover { transform: translateY(-5px); box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }
.contact-card i { font-size: 2.5rem; color: #326168; margin-bottom: 1rem; transition: transform 0.3s ease, color 0.3s ease; }
@media (min-width: 768px) {
    .contact-card i { font-size: 3rem; }
}
.contact-card:hover i { transform: scale(1.1) rotate(-5deg); color: #F6706D; }
.contact-card h3 { font-size: 1.15rem; font-weight: 600; color: #326168; margin-bottom: 0.25rem; }
.contact-card p { color: #4b5563; font-size: 0.9rem; }
.faq-icon { color: #F6706D; margin-right: 0.75rem; width: 1.25rem; text-align: center; }
.accordion-header span { display: flex; align-items: center; }
.tab-button {
    flex: 1 1 auto;
    padding: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #326168;
    background-color: #e5e7eb;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    margin-bottom: -1px;
    text-align: center;
    border: 1px solid #d1d5db;
    margin-right: 2px;
    border-top-width: 3px;
    border-top-color: transparent;
}
.tab-button:last-child { margin-right: 0; }
@media (min-width: 768px) {
    .tab-button { font-size: 1.125rem; padding: 1rem 1.5rem; margin-right: 4px; }
}
@media (max-width: 767px) {
    .tab-button { flex-basis: 100%; justify-content: flex-start; border-radius: 0.5rem 0.5rem 0 0; margin-right: 0; }
    .tab-button:not(:last-child) { margin-bottom: 4px; }
    .tab-button.active { margin-bottom: -1px; }
}
.tab-button:hover { background-color: #d1d5db; border-color: #adb5bd; border-top-color: transparent; }
.tab-button.active { background-color: #ffffff; color: #326168; z-index: 10; border-top-color: #F6706D; border-bottom-color: transparent; border-left-color: #d1d5db; border-right-color: #d1d5db; }
.tab-button.active:hover { border-top-color: #F6706D; border-left-color: #d1d5db; border-right-color: #d1d5db; }
.tab-button .policy-icon { transition: transform 0.3s ease-in-out, color 0.3s ease-in-out; color: #326168; }
.tab-button.active .policy-icon { transform: scale(1.1); color: #F6706D; }
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    background-color: #ffffff;
    border-radius: 0 0.5rem 0.5rem 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #d1d5db;
    border-top: none;
    z-index: 5;
    position: relative;
}
@media (max-width: 767px) {
    .tab-content { border-radius: 0 0 0.5rem 0.5rem; }
    .tab-button.active { border-radius: 0.5rem 0.5rem 0 0; }
}
.tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
.policy-content h3 { color: #326168; font-weight: 600; font-size: 1.1rem; margin-top: 1.25rem; margin-bottom: 0.5rem; }
.policy-content p, .policy-content ul { color: #4b5563; line-height: 1.625; margin-bottom: 1rem; font-size: 0.95rem; }
.policy-content ul { list-style-type: disc; list-style-position: inside; padding-left: 0.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.policy-content strong { color: #1f2937; font-weight: 600; }
.policy-content a { color: #F6706D; text-decoration: underline; transition: color 0.2s; }
.policy-content a:hover { color: #326168; }
.catalog-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    transition: grid-template-columns 0.3s ease-in-out;
}
.catalog-container.sidebar-collapsed { grid-template-columns: auto 1fr; }
.mobile-filter-toggle {
    display: none;
    background-color: #326168;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    grid-column: 1 / -1;
}
.mobile-filter-toggle:hover { background-color: #F6706D; }
.desktop-filter-toggle {
    display: none;
    background: none;
    border: none;
    color: #326168;
    cursor: pointer;
    font-size: 1.5rem;
    transition: color 0.2s ease, transform 0.2s ease;
}
.desktop-filter-toggle:hover { color: #F6706D; transform: scale(1.1); }
.filter-sidebar {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    align-self: start;
    width: 280px;
    transition: width 0.3s ease, padding 0.3s ease, opacity 0.3s ease, transform 0.3s ease-out, border 0.3s ease;
    overflow: hidden;
    transform-origin: left;
    border: 1px solid #e5e7eb;
}
.filter-sidebar.collapsed { width: 0; padding-left: 0; padding-right: 0; opacity: 0; transform: translateX(-100%); border-color: transparent; }
.filter-group { margin-bottom: 1.5rem; border-bottom: 1px solid #e5e7eb; padding-bottom: 1.5rem; white-space: nowrap; }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-group h3 { font-size: 1.15rem; font-weight: 600; color: #326168; margin-bottom: 1rem; border-bottom: 2px solid #F6706D; padding-bottom: 0.5rem; display: inline-block; }
.filter-group ul { list-style-type: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.filter-group li { display: flex; align-items: center; }
.filter-group input[type="checkbox"], .filter-group input[type="radio"] { margin-right: 0.75rem; accent-color: #F6706D; width: 1.15rem; height: 1.15rem; cursor: pointer; flex-shrink: 0; }
.filter-group label { color: #4b5563; font-size: 0.95rem; cursor: pointer; transition: color 0.2s ease; white-space: normal; }
.filter-group label:hover { color: #F6706D; }
#clear-filters-btn { background-color: #F6706D; color: white; font-weight: 600; border-radius: 0.5rem; transition: all 0.2s ease; padding: 0.5rem; width: 100%; border: none; cursor: pointer; }
#clear-filters-btn:hover { background-color: #e05a57; transform: translateY(-1px); box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.product-grid-container { flex: 1; transition: width 0.3s ease; position: relative; }
.product-grid-header { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.product-grid-header .products-section-title { margin-bottom: 0; text-align: left; font-size: 1.5rem; }
.product-grid-header .products-section-title::after { left: 0; transform: translateX(0); }
.sort-by-select { background-color: #ffffff; border: 1px solid #d1d5db; border-radius: 0.5rem; padding: 0.5rem 0.75rem; font-size: 0.875rem; font-weight: 500; color: #326168; cursor: pointer; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.catalog-product-card { background-color: #ffffff; border-radius: 0.75rem; overflow: hidden; border: 1px solid #e5e7eb; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; animation: fadeIn 0.5s ease; }
.catalog-product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); }
.catalog-product-card .product-image-container { height: 200px; width: 100%; overflow: hidden; }
.catalog-product-card .product-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.catalog-product-card:hover .product-image { transform: scale(1.05); }
.catalog-product-card .product-info { padding: 1rem; text-align: center; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.catalog-product-card h4 { font-size: 1.1rem; font-weight: 600; color: #326168; margin-bottom: 0.5rem; min-height: 2.75em; }
.view-item-button { background-color: #326168; color: white; padding: 0.6rem 1rem; border-radius: 9999px; font-weight: bold; display: inline-flex; align-items: center; justify-content: center; text-align: center; gap: 0.5rem; width: 100%; font-size: 0.9rem; transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out, box-shadow 0.2s ease-in-out; margin-top: 0.5rem; text-decoration: none; }
.view-item-button:hover { background-color: #F6706D; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(246, 112, 109, 0.4); }
#no-results { text-align: center; color: #4b5563; font-size: 1.15rem; padding: 3rem; width: 100%; }
.pagination-container { display: flex; justify-content: center; align-items: center; padding: 2rem 0; }
.pagination-container ul { display: flex; align-items: center; padding-left: 0; margin: 0; list-style-type: none; gap: 0.25rem; }
.pagination-container .page-link { display: flex; justify-content: center; align-items: center; width: 36px; height: 36px; border: 1px solid #d1d5db; background-color: #ffffff; color: #326168; border-radius: 0.375rem; cursor: pointer; transition: all 0.2s ease; font-weight: 600; font-size: 0.9rem; user-select: none; }
.pagination-container .page-link:hover { background-color: #f3f4f6; border-color: #adb5bd; }
.pagination-container .page-item.active .page-link { background-color: #326168; color: white; border-color: #326168; z-index: 2; }
.pagination-container .page-item.disabled .page-link { color: #9ca3af; background-color: #e5e7eb; border-color: #e5e7eb; cursor: not-allowed; }
@media (min-width: 768px) {
    .desktop-filter-toggle { display: block; }
    .catalog-container:not(.sidebar-collapsed) .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .catalog-container.sidebar-collapsed .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .product-grid-header .products-section-title { font-size: 2rem; }
}
@media (min-width: 1024px) {
    .catalog-container:not(.sidebar-collapsed) .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .catalog-container.sidebar-collapsed .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
    .catalog-container { display: block; grid-template-columns: 1fr; padding: 1rem; }
    .mobile-filter-toggle { display: block; margin-bottom: 1rem; }
    .filter-sidebar { display: none; width: 100%; position: relative; z-index: 50; transform: none !important; opacity: 1 !important; padding: 1.5rem !important; white-space: normal; }
    .filter-sidebar.open { display: block; animation: slide-down 0.3s ease-out; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
    .product-grid-header { justify-content: space-between; flex-direction: column; align-items: stretch; gap: 1rem; }
    .product-grid-header-left { justify-content: center; margin-bottom: 0.5rem; }
    .product-grid-header .products-section-title { text-align: center; font-size: 1.75rem; }
    .product-grid-header .products-section-title::after { left: 50%; transform: translateX(-50%); }
    .desktop-filter-toggle { display: none; }
}
@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr; }
}
@keyframes slide-down { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background-color: #326168; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background-color: #F6706D; }