@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary: #000000;
    --primary-hover: #1f1f1f;
    --text-main: #111111;
    --text-muted: #666666;
    --bg-white: #ffffff;
    --bg-gray-light: #f8f9fa;
    --bg-gray-mid: #f1f3f5;
    --border-color: #e9ecef;
    --font-title: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navbar */
.top-bar {
    background-color: #000000;
    border-bottom: 1px solid #111111;
    padding: 0.6rem 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
}

.top-bar-item svg {
    stroke: #ffffff;
}

.navbar {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #000000;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: 2rem;
}

.nav-link {
    font-family: var(--font-title);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #555;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.mobile-menu-toggle {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #000000;
}

.nav-icon {
    font-size: 1.2rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
}

.nav-icon-cart {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: #000000;
    color: #ffffff;
    font-size: 0.62rem;
    font-weight: 800;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-quote {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 0.85rem 1.85rem;
    border-radius: 4px;
    font-family: var(--font-title);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1.5px solid var(--primary);
    margin-left: 0.5rem;
}

.btn-quote:hover {
    background-color: var(--primary-hover);
}

/* Hero Section */
.hero {
    background-color: #f3f4f6; /* Soft studio light grey background matching the image */
    overflow: hidden;
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
}

.hero .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 0 0 4rem; /* Bleed to the right edge */
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    max-width: 620px;
    padding: 5rem 0;
}

.hero-subtitle {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #4b5563;
    font-weight: 700;
    background-color: #ffffff; /* Contrast white badge */
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #111827;
}

.hero-description {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 0.9rem 1.8rem;
    border-radius: 4px;
    font-weight: 700;
    font-family: var(--font-title);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: #1f2937;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    padding: 0.9rem 1.8rem;
    border-radius: 4px;
    font-weight: 700;
    font-family: var(--font-title);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background-color: #f9fafb;
    border-color: var(--primary);
}

.hero-image-container {
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Category Cards */
.categories-section {
    padding: 1rem 0 3rem 0;
}

.categories-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.categories-divider::before,
.categories-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.categories-divider:not(:empty)::before {
    margin-right: 1.5rem;
}

.categories-divider:not(:empty)::after {
    margin-left: 1.5rem;
}

.categories-divider span {
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #374151;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 380px;
    background-color: #f3f4f6;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 2rem 1.5rem;
}

.category-title {
    color: var(--bg-white);
    font-size: 1.15rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.category-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.category-card:hover .category-img {
    transform: scale(1.04);
}

.category-card:hover .category-btn {
    background-color: var(--primary);
    color: var(--bg-white);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 1.5rem;
}

.steps-line {
    position: absolute;
    top: 35px; /* Aligns to center of 70px icon */
    left: 8%;
    right: 8%;
    height: 1px;
    background: repeating-linear-gradient(to right, transparent, transparent 5px, #000000 5px, #000000 10px);
    z-index: 1;
}

.step-card {
    position: relative;
    z-index: 2;
    background-color: var(--bg-white);
    flex: 1;
    text-align: center;
    padding: 0 0.5rem;
}

.step-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #000000;
    border: 1px solid #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: var(--transition);
}

.step-icon-wrapper svg {
    width: 28px;
    height: 28px;
    stroke: #ffffff;
    fill: none;
}

.step-title {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #000000;
}

.step-desc {
    font-size: 0.8rem;
    color: #4b5563;
}

/* Featured Products (Mais Pedidos) - Sized smaller as requested */
.featured-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.featured-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.featured-header-row .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 0.25rem;
}

.featured-nav {
    display: flex;
    gap: 0.75rem;
}

.nav-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.nav-arrow:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
}

.products-slider-wrapper {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-img-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 6px;
    background-color: #f9fafb;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-img {
    transform: scale(1.04);
}

.product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #000000;
}

.btn-product-quote {
    display: block;
    width: 100%;
    background-color: var(--primary);
    color: var(--bg-white);
    text-align: center;
    padding: 0.7rem 0.5rem;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-product-quote:hover {
    background-color: #1f2937;
}

/* Why Choose Us */
.why-us {
    padding: 3rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    background-color: #ffffff;
}

.why-us-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
}

.why-us-divider::before,
.why-us-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.why-us-divider:not(:empty)::before {
    margin-right: 1.5rem;
}

.why-us-divider:not(:empty)::after {
    margin-left: 1.5rem;
}

.why-us-divider span {
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #000000;
}

.benefits-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    justify-content: center;
}

.benefit-card:not(:last-child) {
    border-right: 1px solid #e5e7eb;
}

.benefit-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #000000;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon-wrapper svg {
    width: 22px;
    height: 22px;
    stroke: #000000;
    fill: none;
}

.benefit-title {
    font-family: var(--font-title);
    font-size: 0.82rem;
    font-weight: 800;
    color: #000000;
}

.benefit-desc {
    display: none;
}

/* Works Section */
.works-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.section-title-gallery {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #000000;
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-steps {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #000000;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.work-item {
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f3f4f6;
}

.work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.work-item:hover .work-img {
    transform: scale(1.05);
}

.works-action {
    text-align: center;
}

.btn-instagram-more {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    padding: 0.8rem 2.5rem;
    border: 1.5px solid #000000;
    border-radius: 4px;
    font-family: var(--font-title);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-instagram-more:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.section-header-testimonials {
    text-align: center;
    margin-bottom: 3.5rem;
}

.testimonials-subtitle {
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonials-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 800;
    color: #000000;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    display: flex;
    gap: 0.2rem;
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.testimonial-text {
    font-size: 0.9rem;
    color: #111111;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 800;
    font-size: 0.9rem;
    color: #000000;
}

.author-desc {
    font-size: 0.78rem;
    color: #666666;
    font-weight: 500;
}

/* FAQ Accordion & CTA Card */
.faq-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.faq-layout {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 4rem;
    align-items: start;
}

.faq-accordion-container {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 3rem 2.5rem;
}

.faq-title-main {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #000000;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.accordion-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.25rem 0;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 700;
    color: #000000;
    background: none;
    border: none;
    padding: 0;
}

.accordion-icon {
    font-size: 1.2rem;
    font-weight: 400;
    color: #000000;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.6;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-top: 1rem;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.faq-cta-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 3rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Search Overlay & Cart Drawer */
.search-overlay {
    position: absolute;
    inset: 0;
    background-color: #ffffff;
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 101;
}

.search-overlay.active {
    display: flex;
}

.search-input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-family: var(--font-title);
    color: #000000;
}

.search-close-btn {
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #000000;
    padding: 0.5rem;
}

.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.cart-drawer-overlay.active {
    display: block;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    font-size: 1.2rem;
    margin: 0;
}

.cart-drawer-close {
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #000000;
}

.cart-drawer-body {
    flex: 1;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.empty-cart-msg {
    font-size: 0.95rem;
    color: #6b7280;
}

.cart-drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.faq-cta-title {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.faq-cta-desc {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.btn-whatsapp-cta {
    background-color: #000000;
    color: #ffffff;
    width: 100%;
    max-width: 320px;
    padding: 1rem 1.5rem;
    border-radius: 30px; /* Rounded pill */
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.btn-whatsapp-cta:hover {
    background-color: #1f2937;
}

.whatsapp-icon {
    stroke: #ffffff;
    fill: none;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #9ca3af;
    padding: 5rem 0 2rem 0;
    font-size: 0.85rem;
}

.footer h5 {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1.6fr 1.6fr 1.6fr 2fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.footer-col {
    padding-right: 1.5rem;
}

.footer-col:not(.footer-col-last) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.footer-about p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #9ca3af;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social-icon:hover {
    background-color: #ffffff;
    color: #000000;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9ca3af;
}

.contact-icon {
    stroke: #ffffff;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-content {
        margin: 0 auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .works-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-col:not(.footer-col-last) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none !important;
    }
    .container {
        padding: 0 1.5rem;
    }
    .navbar-container {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        width: 100%;
    }
    .mobile-menu-toggle {
        display: block !important;
        grid-column: 1;
        justify-self: start;
    }
    .logo {
        grid-column: 2;
        justify-self: center;
        margin: 0;
        font-size: 1.5rem;
    }
    .nav-actions {
        grid-column: 3;
        justify-self: end;
        gap: 0.75rem;
    }
    .nav-icon-user {
        display: none !important;
    }
    .hero .container {
        padding: 3rem 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
        padding: 0;
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-subtitle {
        margin-bottom: 1rem;
        align-self: center;
    }
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
        text-align: center;
    }
    .hero-description {
        font-size: 0.95rem;
        color: #4b5563;
        margin-bottom: 2rem;
        text-align: center;
    }
    .hero-buttons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
        width: 100%;
    }
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
        border-radius: 30px; /* rounded pill style */
        white-space: nowrap;
    }
    .hero-image-container {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }
    .hero-image-container img {
        min-height: auto;
        height: auto;
        border-radius: 8px;
    }
    .steps-container {
        flex-direction: column;
        gap: 2.5rem;
    }
    .steps-line {
        display: none;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .benefit-card {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 1rem;
        padding: 0.5rem;
    }
    .benefit-icon {
        margin-bottom: 0;
        font-size: 1.8rem;
    }
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .btn-instagram-icon {
        stroke: currentColor;
        fill: none;
        flex-shrink: 0;
    }
    .btn-instagram-more {
        padding: 0.8rem 1.5rem;
        font-size: 0.72rem;
        width: 100%;
        max-width: 280px;
        box-sizing: border-box;
    }
    .testimonials-grid-wrapper {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-bottom: 1.5rem;
    }
    .testimonials-grid-wrapper::-webkit-scrollbar {
        display: none;
    }
    .testimonials-grid {
        display: flex;
        gap: 1rem;
        scroll-snap-type: x mandatory;
        flex-wrap: nowrap;
    }
    .testimonial-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
    }
    .testimonials-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    .testimonial-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #d1d5db;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .testimonial-dot.active {
        background-color: #000000;
        width: 20px;
        border-radius: 4px;
    }
    .accordion-header::before {
        content: '> ';
        margin-right: 0.5rem;
        color: #000000;
        font-weight: 800;
    }
    .faq-cta-card {
        background-color: #000000;
        color: #ffffff;
        border: none;
    }
    .faq-cta-title {
        color: #ffffff;
    }
    .faq-cta-desc {
        color: #9ca3af;
    }
    .btn-whatsapp-cta {
        background-color: #ffffff;
        color: #000000;
    }
    .btn-whatsapp-cta:hover {
        background-color: #f3f4f6;
    }
    .btn-whatsapp-cta .whatsapp-icon {
        stroke: #000000;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        border-bottom: 1px solid var(--border-color);
        padding: 1.5rem 2rem;
        gap: 1.5rem;
        z-index: 99;
        box-shadow: var(--shadow-md);
        margin: 0;
    }
    .nav-links.active {
        display: flex !important;
    }
    .btn-quote {
        display: none;
    }
}

/* ==========================================================================
   Product Page Styles
   ========================================================================== */
.product-page-wrapper {
    padding: 4rem 0;
    background-color: #ffffff;
}

.product-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

/* Gallery Styles */
.product-gallery {
    display: flex;
    gap: 1.5rem;
}

.thumbnail-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 80px;
    flex-shrink: 0;
}

.thumbnail-item {
    width: 100%;
    aspect-ratio: 1/1;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background-color: #f9fafb;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: #000000;
    box-shadow: var(--shadow-sm);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-image-display {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.main-image-display img {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: contain;
    transition: var(--transition);
}

/* Product Details panel */
.product-details-panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product-badge {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    background-color: #000000;
    color: #ffffff;
    padding: 0.35rem 0.7rem;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.product-page-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    color: #000000;
}

.product-rating-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars-rating {
    color: #000000;
    font-size: 1rem;
    letter-spacing: 1.5px;
}

.reviews-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.product-page-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-price-section {
    margin-bottom: 2.5rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.price-installments {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Form selectors */
.options-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.option-label {
    font-family: var(--font-title);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #000000;
    letter-spacing: 0.5px;
}

.neck-selector {
    display: flex;
    gap: 1rem;
}

.neck-btn {
    padding: 0.85rem 2.5rem;
    border-radius: 4px;
    font-family: var(--font-title);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    border: 1.5px solid #d1d5db;
    background-color: #ffffff;
    color: #000000;
    transition: var(--transition);
}

.neck-btn.active {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.neck-btn:hover:not(.active) {
    border-color: #000000;
}

.size-selector {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.size-btn {
    min-width: 48px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-family: var(--font-title);
    font-size: 0.78rem;
    font-weight: 800;
    border: 1.5px solid #d1d5db;
    background-color: #ffffff;
    color: #000000;
    transition: var(--transition);
}

.size-btn.active {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.size-btn:hover:not(.active) {
    border-color: #000000;
}

.size-summary-box {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 1rem 1.25rem;
    font-size: 0.8rem;
    line-height: 1.4;
}

.size-summary-box strong {
    display: block;
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    color: #000000;
}

.size-summary-box p {
    color: var(--text-muted);
    margin: 0;
}

/* Quantity and Purchase actions */
.purchase-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.quantity-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quantity-stepper {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid #d1d5db;
    border-radius: 4px;
    width: fit-content;
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    background-color: #ffffff;
    transition: var(--transition);
}

.qty-btn:hover {
    background-color: #f3f4f6;
}

#qty-input {
    width: 50px;
    height: 40px;
    border: none;
    border-left: 1.5px solid #d1d5db;
    border-right: 1.5px solid #d1d5db;
    text-align: center;
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 800;
    color: #000000;
    -moz-appearance: textfield;
}

#qty-input::-webkit-outer-spin-button,
#qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.action-buttons-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-action-cart {
    display: block;
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 1.1rem;
    border: 1.5px solid #000000;
    border-radius: 4px;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
}

.btn-action-cart:hover {
    background-color: #1f2937;
    border-color: #1f2937;
}

.btn-action-primary {
    display: block;
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    padding: 1.1rem;
    border: 1.5px solid #000000;
    border-radius: 4px;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
}

.btn-action-primary:hover {
    background-color: #000000;
    color: #ffffff;
}

.btn-action-secondary {
    display: block;
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    padding: 1.1rem;
    border: 1.5px solid #000000;
    border-radius: 4px;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
}

.btn-action-secondary:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Cart Items inside Drawer */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem 0;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f1f3f5;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 4px;
}

.cart-item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cart-item-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.cart-item-options {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.cart-item-price-qty {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.25rem;
}

.cart-item-qty {
    font-size: 0.8rem;
    font-weight: 600;
    color: #000000;
}

.cart-item-price {
    font-size: 0.85rem;
    font-weight: 800;
    color: #000000;
}

.btn-remove-cart-item {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.btn-remove-cart-item:hover {
    color: #ef4444;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-top: 2px solid #000000;
    margin-top: 1rem;
    font-family: var(--font-title);
}

.cart-total-row span {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000000;
}

.cart-total-row strong {
    font-size: 1.2rem;
    font-weight: 800;
    color: #000000;
}

/* Tabs Section */
.product-info-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 4rem;
}

.info-tab-col {
    display: flex;
    flex-direction: column;
}

.tab-title {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #000000;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #000000;
    padding-bottom: 0.5rem;
    width: fit-content;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 500;
}

.check-icon {
    stroke: #000000;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    padding: 0.6rem 0;
    font-size: 0.85rem;
}

.specs-table tr:not(:last-child) td {
    border-bottom: 1px solid #f1f3f5;
}

.spec-label {
    font-weight: 600;
    color: var(--text-muted);
    width: 45%;
}

.spec-val {
    font-weight: 500;
    color: #000000;
    text-align: right;
}

.care-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.care-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 500;
}

.care-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    flex-shrink: 0;
}

.care-icon-wrapper svg {
    stroke: #000000;
}

/* Related Products */
.related-products-section {
    padding: 1rem 0 4rem 0;
}

.related-section-title {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #000000;
    text-align: center;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.related-product-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background-color: #ffffff;
    overflow: hidden;
    transition: var(--transition);
}

.related-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #d1d5db;
}

.related-product-link {
    display: block;
    color: inherit;
}

.related-img-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden;
}

.related-img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: var(--transition);
}

.related-product-card:hover .related-img {
    transform: scale(1.04);
}

.related-info {
    padding: 1.25rem;
}

.related-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: #000000;
}

/* ==========================================================================
   Product Page Responsive Styles
   ========================================================================== */
@media (max-width: 1024px) {
    .product-main-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .product-info-tabs {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 0;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .product-page-wrapper {
        padding: 2rem 0;
    }
    
    .product-gallery {
        flex-direction: column-reverse;
        gap: 1rem;
    }
    
    .thumbnail-list {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        gap: 0.75rem;
    }
    
    .thumbnail-item {
        width: 65px;
        flex-shrink: 0;
    }
    
    .product-page-title {
        font-size: 1.8rem;
    }
    
    .price-value {
        font-size: 2.2rem;
    }
    
    .neck-selector,
    .size-selector {
        width: 100%;
    }
    
    .neck-btn {
        flex: 1;
        padding: 0.8rem 1rem;
        font-size: 0.72rem;
        text-align: center;
    }
}

/* ==========================================================================
   Catalog Page Styles
   ========================================================================== */
.catalog-hero {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 4rem 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.catalog-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 2rem;
}

.catalog-hero-content {
    z-index: 2;
}

.catalog-hero-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: block;
}

.catalog-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #000000;
}

.catalog-hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 540px;
}

.catalog-hero-img-container {
    position: relative;
    height: 220px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.catalog-hero-img {
    max-height: 280px;
    object-fit: contain;
    transform: rotate(-5deg);
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
    transition: var(--transition);
}

.catalog-hero-img:hover {
    transform: rotate(0deg) scale(1.03);
}

.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    margin-bottom: 5rem;
    align-items: start;
}

/* Sidebar Filters */
.catalog-sidebar {
    background: #ffffff;
    position: sticky;
    top: 100px;
    z-index: 10;
}

.filter-section {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.filter-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.filter-title {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.filter-title svg {
    transition: var(--transition);
}

.filter-title.collapsed svg {
    transform: rotate(-180deg);
}

.filter-content {
    transition: max-height 0.3s ease;
    overflow: hidden;
}

.filter-category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-category-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: var(--transition);
}

.filter-category-item.active a,
.filter-category-item a:hover {
    background-color: var(--bg-gray-light);
    font-weight: 700;
    color: #000000;
}

.category-count {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--bg-gray-mid);
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    font-weight: 600;
}

.filter-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--text-main);
    user-select: none;
}

.filter-checkbox-label input {
    width: 16px;
    height: 16px;
    accent-color: #000000;
    cursor: pointer;
}

/* Color Options */
.color-options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.color-option-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #dee2e6;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.color-option-btn:hover {
    transform: scale(1.15);
}

.color-option-btn.selected {
    transform: scale(1.15);
    border-color: #000000;
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #000000;
}

/* Range Slider */
.price-range-container {
    padding: 0.5rem 0;
}

.price-slider-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #000000;
}

.range-slider-input {
    width: 100%;
    height: 4px;
    background: #dee2e6;
    border-radius: 5px;
    outline: none;
    accent-color: #000000;
    -webkit-appearance: none;
}

.range-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #000000;
    cursor: pointer;
    transition: var(--transition);
}

.range-slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.btn-filter-apply {
    display: block;
    width: 100%;
    text-align: center;
    background: #000000;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.8rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    margin-top: 1.25rem;
}

.btn-filter-apply:hover {
    background: #222222;
}

/* Sidebar CTA Box */
.sidebar-cta-box {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.sidebar-cta-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #000000;
}

.sidebar-cta-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.btn-sidebar-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.8rem 1rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-sidebar-whatsapp:hover {
    background-color: #222222;
    transform: translateY(-2px);
}

/* Catalog Content Area */
.catalog-main-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.products-counter {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.products-counter span {
    color: #000000;
    font-weight: 700;
}

.catalog-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-select {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.5rem 2rem 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    background-color: #ffffff;
    color: #000000;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23000000' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

.layout-toggles {
    display: flex;
    gap: 0.5rem;
    border: 1px solid #dee2e6;
    padding: 0.2rem;
    border-radius: 8px;
    background: var(--bg-gray-light);
}

.layout-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.layout-btn:hover {
    color: #000000;
    background: #ffffff;
}

.layout-btn.active {
    color: #000000;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

/* Products Grid */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    transition: opacity 0.2s ease;
}

.catalog-grid.loading {
    opacity: 0.5;
}

/* Product Card */
.catalog-product-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.catalog-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: #ced4da;
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #000000;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.card-img-wrapper {
    aspect-ratio: 1/1;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.card-img {
    width: 82%;
    height: 82%;
    object-fit: contain;
    transition: var(--transition);
}

.catalog-product-card:hover .card-img {
    transform: scale(1.05);
}

.card-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-category-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
}

.card-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.6rem;
}

.card-title a:hover {
    color: var(--text-muted);
}

.card-price-row {
    margin-top: auto;
    margin-bottom: 1rem;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

.price-amount {
    font-size: 1.1rem;
    font-weight: 800;
    color: #000000;
}

.card-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-card-quote {
    flex-grow: 1;
    text-align: center;
    border: 1px solid #dee2e6;
    color: #000000;
    background-color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.7rem 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-card-quote:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.btn-card-whatsapp {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    background-color: #ffffff;
    flex-shrink: 0;
    transition: var(--transition);
}

.btn-card-whatsapp:hover {
    background-color: #f1f3f5;
    color: #25d366;
    border-color: #ced4da;
    transform: scale(1.05);
}

/* List View Styles Override */
.catalog-grid.list-view {
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.catalog-grid.list-view .catalog-product-card {
    flex-direction: row;
    height: 180px;
}

.catalog-grid.list-view .card-img-wrapper {
    width: 180px;
    height: 100%;
    aspect-ratio: auto;
    border-bottom: none;
    border-right: 1px solid #e9ecef;
    flex-shrink: 0;
}

.catalog-grid.list-view .card-info {
    padding: 1.5rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.catalog-grid.list-view .card-details-group {
    max-width: 50%;
}

.catalog-grid.list-view .card-title {
    height: auto;
    -webkit-line-clamp: 1;
    margin-bottom: 0.25rem;
}

.catalog-grid.list-view .card-price-row {
    margin-top: 0.5rem;
}

.catalog-grid.list-view .card-actions-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.catalog-grid.list-view .card-actions {
    width: 220px;
}

/* Empty State */
.catalog-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 2rem;
    background: #ffffff;
    border: 1px dashed #ced4da;
    border-radius: 12px;
    display: none;
}

.empty-state-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #000000;
}

.empty-state-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.btn-clear-filters {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-clear-filters:hover {
    background: #222222;
}

/* Pagination */
.catalog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 3.5rem;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #000000;
    transition: var(--transition);
    background: #ffffff;
}

.page-btn:hover {
    border-color: #000000;
    background-color: var(--bg-gray-light);
}

.page-btn.active {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

/* ==========================================================================
   Catalog Page Mobile Controls and Drawers
   ========================================================================== */
.mobile-controls-bar {
    display: none;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.mobile-control-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.6rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #000000;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-control-btn:hover {
    background: #f8f9fa;
    border-color: #ced4da;
}

.mobile-sort-wrapper {
    flex: 1;
    position: relative;
}

.mobile-sort-select {
    width: 100%;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.6rem 2rem 0.6rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    background-color: #ffffff;
    color: #000000;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23000000' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

/* Mobile Drawers (Slide Up Overlays) */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2001;
    padding: 1.5rem;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
}

.mobile-drawer.active {
    transform: translateY(0);
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.75rem;
}

.mobile-drawer-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #000000;
}

.mobile-drawer-close {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    cursor: pointer;
    background: none;
    border: none;
}

.mobile-drawer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-drawer-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-drawer-item.active a,
.mobile-drawer-item a:hover {
    background-color: var(--bg-gray-light);
    font-weight: 700;
    color: #000000;
}

.mobile-load-more-btn {
    display: none;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.9rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #000000;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.mobile-load-more-btn:hover {
    background-color: #f8f9fa;
    border-color: #ced4da;
}

/* Responsive Styles Override */
@media (max-width: 1024px) {
    .catalog-hero-title {
        font-size: 2.25rem;
    }
    .catalog-layout {
        grid-template-columns: 240px 1fr;
        gap: 1.5rem;
    }
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .catalog-hero {
        padding: 2.5rem 0;
        margin-bottom: 2rem;
    }
    .catalog-hero-grid {
        grid-template-columns: 1.3fr 0.7fr;
        align-items: center;
        text-align: left;
    }
    .catalog-hero-img-container {
        display: flex; /* keep it visible as per mobile mockup */
        height: 140px;
    }
    .catalog-hero-img {
        max-height: 180px;
    }
    .catalog-hero-title {
        font-size: 2.2rem;
    }
    .catalog-hero-desc {
        font-size: 0.95rem;
    }
    .catalog-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Hide desktop sidebar on mobile */
    .catalog-sidebar {
        display: none;
    }

    /* Hide desktop control topbar */
    .catalog-main-topbar {
        display: none;
    }

    /* Show mobile controls bar */
    .mobile-controls-bar {
        display: flex;
    }

    /* Show mobile load more */
    .mobile-load-more-btn {
        display: flex;
    }

    /* Hide desktop pagination */
    .catalog-pagination {
        display: none;
    }

    /* Horizontal Cards Grid Layout for Mobile */
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .catalog-product-card {
        flex-direction: row;
        height: 170px;
        align-items: stretch;
    }

    .catalog-product-card .card-badge {
        top: 0.5rem;
        left: 0.5rem;
        font-size: 0.55rem;
        padding: 0.2rem 0.4rem;
    }

    .catalog-product-card .card-img-wrapper {
        width: 140px;
        height: 100%;
        aspect-ratio: auto;
        border-bottom: none;
        border-right: 1px solid #e9ecef;
        flex-shrink: 0;
    }

    .catalog-product-card .card-img {
        width: 85%;
        height: 85%;
    }

    .catalog-product-card .card-info {
        padding: 1rem;
        flex-direction: column;
        justify-content: space-between;
        flex-grow: 1;
        align-items: flex-start;
    }

    .catalog-product-card .card-details-group {
        width: 100%;
        display: flex;
        flex-direction: column;
        max-width: 100%;
    }

    .catalog-product-card .card-category-tag {
        font-size: 0.65rem;
        margin-bottom: 0.2rem;
    }

    .catalog-product-card .card-title {
        font-size: 0.85rem;
        height: auto;
        -webkit-line-clamp: 1;
        margin-bottom: 0.15rem;
    }

    .catalog-product-card .card-price-row {
        display: flex;
        align-items: baseline;
        gap: 0.25rem;
        margin-top: 0.1rem;
        margin-bottom: 0.5rem;
    }

    .catalog-product-card .price-label {
        font-size: 0.6rem;
    }

    .catalog-product-card .price-amount {
        font-size: 0.95rem;
    }

    .catalog-product-card .card-actions-group {
        width: 100%;
        margin-top: auto;
    }

    .catalog-product-card .card-actions {
        display: flex;
        gap: 0.4rem;
        width: 100%;
    }

    .catalog-product-card .btn-card-quote {
        background-color: #000000 !important;
        color: #ffffff !important;
        border-color: #000000 !important;
        font-size: 0.7rem;
        padding: 0.6rem 0.5rem;
        border-radius: 8px;
        flex-grow: 1;
        transition: var(--transition);
        box-shadow: none;
    }

    .catalog-product-card .btn-card-quote:hover {
        background-color: #222222 !important;
        border-color: #222222 !important;
    }

    .catalog-product-card .btn-card-whatsapp {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #dee2e6;
        color: #000000;
        flex-shrink: 0;
        padding: 0;
    }

    /* Benefits row horizontal scroll on mobile */
    .benefits-row {
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 1.25rem;
        padding-bottom: 1.25rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Hide scrollbar for Firefox */
        -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
    }

    .benefits-row::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome/Safari */
    }

    .benefit-card {
        flex-shrink: 0;
        width: 180px;
        scroll-snap-align: start;
        background: var(--bg-gray-light);
        padding: 1.25rem;
        border-radius: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .catalog-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .catalog-hero-img-container {
        display: none; /* Hide image on very small viewports */
    }
    .catalog-product-card .card-img-wrapper {
        width: 120px;
    }
    .catalog-product-card .card-title {
        font-size: 0.8rem;
    }
}


