/* ============================================
   PRODUCTOS E-COMMERCE STYLES
   ============================================ */

/* Search and Filter Section */
.products-search-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0 40px;
    border-bottom: 1px solid #e2e8f0;
}

.search-container {
    max-width: 800px;
    margin: 0 auto 30px;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-box input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.search-box input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(123, 194, 0, 0.1);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 18px;
    pointer-events: none;
}

/* Category Filters */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
    align-items: center;
}

/* Filter Type Title */
.filter-type-title {
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
}

.filter-type-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-gray-900, #111827);
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.filter-type-title h3::before,
.filter-type-title h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background: var(--color-primary, #7bc200);
    border-radius: 2px;
}

[data-theme="dark"] .filter-type-title h3 {
    color: #f3f4f6;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 194, 0, 0.15);
}

.filter-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.results-info {
    text-align: center;
    color: #64748b;
    font-size: 14px;
    margin-top: 10px;
}

.results-count {
    font-weight: 700;
    color: var(--color-primary);
}

/* Products Grid */
.products-catalog-section {
    padding: 60px 0 80px;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 284px);
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

/* Product Card */
.product-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 284px;
    max-height: 483px;
    width: 100%;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card.featured {
    border-color: var(--color-primary);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
    z-index: 2;
}

.product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 16px 16px 0 0;
    position: relative;
}

.product-image.loaded {
    animation: none;
    background: transparent;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    background-color: #e0e0e0;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.product-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: inline-block;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid #e2e8f0;
    margin-top: auto;
    background: #f8f9fa;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
}

/* Botón Consultar (estilo link) */
.btn-consultar-link {
    background: transparent;
    border: none;
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-consultar-link:hover {
    color: var(--color-primary-dark);
    text-decoration-thickness: 2px;
    transform: translateY(-1px);
}

.btn-consultar {
    padding: 10px 20px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-consultar:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 194, 0, 0.3);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
    color: #94a3b8;
    grid-column: 1 / -1;
}

.no-results i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 24px;
    color: #64748b;
    margin-bottom: 10px;
}

.no-results p {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, 284px);
        gap: 24px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .products-search-section {
        padding: 40px 0 30px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 284px));
        gap: 20px;
        justify-content: center;
    }

    .category-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .product-image {
        height: 180px;
    }

    .product-info {
        padding: 16px;
    }

    .product-footer {
        padding: 12px 16px;
    }

    .product-name {
        font-size: 16px;
    }

    .product-description {
        font-size: 13px;
    }

    .btn-consultar {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        justify-content: center;
    }

    .product-card {
        max-width: 100%;
        margin: 0 auto;
    }

    .category-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .category-filters::-webkit-scrollbar {
        height: 4px;
    }

    .category-filters::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .category-filters::-webkit-scrollbar-thumb {
        background: var(--color-primary);
        border-radius: 4px;
    }

    .filter-btn {
        flex-shrink: 0;
    }

    .product-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-consultar {
        width: 100%;
        justify-content: center;
    }

    .search-box input {
        font-size: 14px;
        padding: 14px 45px 14px 16px;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.product-card.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* ============================================
   DARK THEME STYLES
   ============================================ */

/* Search Section */
[data-theme="dark"] .products-search-section {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    border-bottom-color: #374151;
}

[data-theme="dark"] .search-box input {
    background-color: #374151;
    border-color: #4b5563;
    color: #f1f5f9;
}

[data-theme="dark"] .search-box input::placeholder {
    color: #9ca3af;
}

[data-theme="dark"] .search-box input:focus {
    border-color: var(--color-primary);
    background-color: #374151;
}

[data-theme="dark"] .search-icon {
    color: #9ca3af;
}

/* Filter Buttons */
[data-theme="dark"] .filter-btn {
    background: #374151;
    border-color: #4b5563;
    color: #d1d5db;
}

[data-theme="dark"] .filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

[data-theme="dark"] .filter-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

[data-theme="dark"] .results-info {
    color: #9ca3af;
}

/* Products Catalog Section */
[data-theme="dark"] .products-catalog-section {
    background: #111827;
}

/* Product Card */
[data-theme="dark"] .product-card {
    background: #1F2937;
    border-color: #374151;
}

[data-theme="dark"] .product-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .product-name {
    color: #f1f5f9;
}

[data-theme="dark"] .product-description {
    color: #9ca3af;
}

[data-theme="dark"] .product-footer {
    background: #374151;
    border-top-color: #4b5563;
}

/* Image Placeholders Dark Theme */
[data-theme="dark"] .product-image {
    background: linear-gradient(90deg, #1F2937 25%, #374151 50%, #1F2937 75%);
    background-size: 200% 100%;
}

[data-theme="dark"] .product-image.loaded {
    animation: none;
    background: transparent;
}

[data-theme="dark"] .product-image img {
    background-color: #1F2937;
}

/* No Results */
[data-theme="dark"] .no-results {
    color: #6b7280;
}

[data-theme="dark"] .no-results h3 {
    color: #9ca3af;
}

/* ============================================
   PRODUCT MODAL STYLES
   ============================================ */

/* Modal Container */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.product-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

/* Modal Content */
.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 1002;
}

.modal-close:hover {
    background: var(--color-primary);
    transform: rotate(90deg);
}

/* Modal Body */
.modal-body {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 90vh;
}

/* Modal Image Section */
.modal-image-section {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
    position: relative;
}

.modal-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal Info Section */
.modal-info-section {
    padding: 40px;
    background: white;
}

.modal-info-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 16px;
    line-height: 1.3;
}

.modal-description {
    font-size: 16px;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Modal Features */
.modal-features {
    margin-bottom: 32px;
}

.modal-features h3,
.modal-specs h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-features h3 i {
    color: var(--color-primary);
    font-size: 20px;
}

.modal-specs h3 i {
    color: var(--color-secondary);
    font-size: 20px;
}

.modal-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.modal-features li {
    font-size: 15px;
    color: #4b5563;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}

.modal-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 18px;
}

/* Modal Specs Grid */
.modal-specs {
    margin-bottom: 32px;
}

.specs-grid-modal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    background: var(--color-gray-50);
    padding: 24px;
    border-radius: 12px;
}

.specs-grid-modal .spec-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.specs-grid-modal .spec-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.specs-grid-modal .spec-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-gray-900);
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 16px;
    padding-top: 24px;
    border-top: 2px solid var(--color-gray-100);
}

.modal-actions .btn {
    flex: 1;
}

/* Simplified Modal */
.modal-simplified {
    padding: 60px 40px 40px;
    text-align: center;
}

.modal-simplified h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

.modal-simplified .modal-category {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.modal-simplified .modal-description {
    font-size: 17px;
    margin-bottom: 40px;
}

/* Dark Theme Support */
[data-theme="dark"] .modal-content {
    background: #1F2937;
}

[data-theme="dark"] .modal-info-section {
    background: #1F2937;
}

[data-theme="dark"] .modal-info-section h2 {
    color: var(--color-gray-900);
}

[data-theme="dark"] .modal-description {
    color: var(--color-gray-600);
}

[data-theme="dark"] .modal-features h3,
[data-theme="dark"] .modal-specs h3 {
    color: var(--color-gray-900);
}

[data-theme="dark"] .modal-features li {
    color: var(--color-gray-600);
}

[data-theme="dark"] .specs-grid-modal {
    background: #374151;
}

[data-theme="dark"] .specs-grid-modal .spec-label {
    color: var(--color-gray-600);
}

[data-theme="dark"] .specs-grid-modal .spec-value {
    color: var(--color-gray-900);
}

[data-theme="dark"] .modal-actions {
    border-top-color: #374151;
}

[data-theme="dark"] .modal-image-section {
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-modal.active {
        padding: 0;
        align-items: flex-start;
    }

    .modal-content {
        border-radius: 0;
        max-height: 100vh;
        height: 100%;
    }

    .modal-body {
        max-height: 100vh;
    }

    .modal-image-section {
        height: 250px;
    }

    .modal-info-section {
        padding: 30px 24px;
    }

    .modal-info-section h2 {
        font-size: 24px;
    }

    .modal-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .modal-features,
    .modal-specs {
        margin-bottom: 24px;
    }

    .modal-features h3,
    .modal-specs h3 {
        font-size: 16px;
    }

    .modal-features li {
        font-size: 14px;
    }

    .specs-grid-modal {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
    }

    .modal-actions {
        flex-direction: column;
        gap: 12px;
    }

    .modal-actions .btn {
        width: 100%;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .modal-simplified {
        padding: 50px 24px 30px;
    }

    .modal-simplified h2 {
        font-size: 22px;
    }

    .modal-simplified .modal-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* ============================================
   QUOTE MODAL STYLES
   ============================================ */

.quote-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.quote-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.quote-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.quote-modal-body {
    padding: 40px;
    overflow-y: auto;
    max-height: 90vh;
}

.quote-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.quote-header-icon {
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.quote-whatsapp-icon {
    font-size: 48px;
    color: #25D366;
    margin-bottom: 16px;
}

.quote-modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 8px;
}

.quote-modal-header p {
    font-size: 14px;
    color: var(--color-gray-600);
}

.quote-form .form-group {
    margin-bottom: 20px;
}

.quote-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 8px;
}

.quote-form label .required {
    color: #ef4444;
}

.quote-form label .required-email {
    font-size: 12px;
    font-weight: 400;
    color: #64748b;
}

.quote-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: white;
}

.quote-form .form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(123, 194, 0, 0.1);
}

.quote-form .form-control[readonly] {
    background: #f8f9fa;
    color: var(--color-primary);
    font-weight: 600;
}

.quote-form textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.quote-schedule-notice {
    font-size: 13px;
    color: #64748b;
    text-align: center;
    margin: 20px 0 16px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px dashed #cbd5e1;
}

.quote-schedule-notice i {
    color: var(--color-primary);
    margin-right: 6px;
}

[data-theme="dark"] .quote-schedule-notice {
    background: #374151;
    border-color: #4b5563;
    color: #94a3b8;
}

.quote-buttons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-email {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
}

.btn-email:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(123, 194, 0, 0.3);
}

/* Dark Theme Support */
[data-theme="dark"] .quote-modal-content {
    background: #1F2937;
}

[data-theme="dark"] .quote-modal-header h2 {
    color: #f1f5f9;
}

[data-theme="dark"] .quote-modal-header p {
    color: #94a3b8;
}

[data-theme="dark"] .quote-form label {
    color: #e2e8f0;
}

[data-theme="dark"] .quote-form .form-control {
    background: #374151;
    border-color: #4b5563;
    color: #f1f5f9;
}

[data-theme="dark"] .quote-form .form-control:focus {
    border-color: var(--color-primary);
}

[data-theme="dark"] .quote-form .form-control[readonly] {
    background: #374151;
}

/* Responsive */
@media (max-width: 768px) {
    .quote-modal.active {
        padding: 0;
        align-items: flex-end;
    }

    .quote-modal-content {
        border-radius: 20px 20px 0 0;
        max-height: 95vh;
    }

    .quote-modal-body {
        padding: 30px 24px;
    }

    .quote-modal-header h2 {
        font-size: 20px;
    }

    .quote-whatsapp-icon {
        font-size: 40px;
    }

    .quote-buttons {
        flex-direction: column;
    }

    .btn-whatsapp,
    .btn-email {
        width: 100%;
    }
}

/* ============================================
   PAGINATION STYLES
   ============================================ */
.pagination-container {
    margin-top: 40px;
    padding: 20px 0;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: inherit;
}

.pagination-btn:hover:not(.disabled) {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 194, 0, 0.15);
}

.pagination-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pagination-number {
    min-width: 40px;
    height: 40px;
    padding: 0;
}

.pagination-ellipsis {
    color: #94a3b8;
    padding: 0 8px;
    font-weight: 600;
}

.pagination-prev,
.pagination-next {
    min-width: auto;
}

.pagination-first,
.pagination-last {
    min-width: 40px;
    height: 40px;
    padding: 0;
}

/* Dark Theme Pagination */
[data-theme="dark"] .pagination-btn {
    background: #1F2937;
    border-color: #374151;
    color: #94a3b8;
}

[data-theme="dark"] .pagination-btn:hover:not(.disabled) {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

[data-theme="dark"] .pagination-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

[data-theme="dark"] .pagination-ellipsis {
    color: #6b7280;
}

/* Responsive Pagination */
@media (max-width: 768px) {
    .pagination {
        gap: 8px;
    }

    .pagination-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .pagination-prev,
    .pagination-next {
        padding: 8px 10px;
    }

    .pagination-prev span,
    .pagination-next span {
        display: none;
    }

    .pagination-first,
    .pagination-last {
        min-width: 36px;
        height: 36px;
    }

    .pagination-number {
        min-width: 36px;
        height: 36px;
    }

    .pagination-ellipsis {
        padding: 0 4px;
    }
}

@media (max-width: 480px) {
    .pagination-numbers {
        gap: 4px;
    }

    .pagination-number {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .pagination-first,
    .pagination-last {
        min-width: 32px;
        height: 32px;
    }
}
