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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.loja-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-section {
    flex-shrink: 0;
}

.logo-img {
    max-height: 50px;
    width: auto;
}

.search-section {
    flex: 1;
    max-width: 600px;
}

.search-form {
    display: flex;
    width: 100%;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: #ff6600;
}

.search-btn {
    padding: 12px 25px;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #ff4500;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.whatsapp-header:hover {
    background: #20ba5a;
    color: #fff;
    text-decoration: none;
}


.breadcrumb-nav {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    margin: 0;
    background: transparent;
    padding: 0;
}

.breadcrumb li a {
    color: #ff6600;
    text-decoration: none;
}

.breadcrumb li.active {
    color: #666;
}

.main-banner {
    position: relative;
    background: linear-gradient(135deg, #364167 0%, #2c3452 100%);
    padding: 0;
    overflow: hidden;
    margin-bottom: 30px;
}

.banner-image-container {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
}

.banner-promo-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.main-banner::before {
    /* Overlay removido - banner sem opacidade */
    /* content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #364167 0%, #2c3452 100%);
    opacity: 0.3;
    z-index: 2;
    pointer-events: none; */
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(255,102,0,.05) 35px,
        rgba(255,102,0,.05) 70px
    );
    z-index: 1;
}

.category-filters {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.category-filters-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.category-filters-container::-webkit-scrollbar {
    height: 6px;
}

.category-filters-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.category-filters-container::-webkit-scrollbar-thumb {
    background: #ff6600;
    border-radius: 3px;
}

.category-filter-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 100px;
    white-space: nowrap;
}

.category-filter-btn i {
    font-size: 28px;
    color: #666;
    transition: all 0.3s;
}

.category-filter-btn span {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
}

.category-filter-btn:hover {
    background: #fff;
    border-color: #ff6600;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255,102,0,0.2);
}

.category-filter-btn:hover i,
.category-filter-btn:hover span {
    color: #ff6600;
}

.category-filter-btn.active {
    background: #ff6600;
    border-color: #ff6600;
    box-shadow: 0 4px 12px rgba(255,102,0,0.3);
}

.category-filter-btn.active i,
.category-filter-btn.active span {
    color: #fff;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px 0 80px 0;
}

.banner-inner {
    text-align: center;
    color: #fff;
}

.banner-badge {
    display: inline-block;
    background: rgba(255,102,0,0.2);
    border: 2px solid #ff6600;
    padding: 8px 25px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6600;
}

.banner-badge i {
    margin-right: 8px;
}

.banner-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 22px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    font-weight: 400;
}

.banner-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.banner-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
}

.banner-feature i {
    font-size: 24px;
    color: #ff6600;
}

.banner-feature span {
    font-size: 16px;
    font-weight: 600;
}

.banner-btn {
    display: inline-block;
    background: #ff6600;
    color: #fff;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255,102,0,0.4);
}

.banner-btn:hover {
    background: #ff4500;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,102,0,0.6);
    color: #fff;
    text-decoration: none;
}

.banner-btn i {
    margin-right: 10px;
}

.loja-main {
    padding: 30px 0;
    min-height: calc(100vh - 200px);
}

.filters-sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filters-toggle-mobile {
    display: none;
    width: 100%;
    padding: 15px;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 15px;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.filters-toggle-mobile:hover {
    background: #ff4500;
}

.filters-toggle-mobile i {
    margin: 0 8px;
}

.filters-toggle-mobile .fa-chevron-down {
    transition: transform 0.3s;
}

.filters-sidebar.filters-open .filters-toggle-mobile .fa-chevron-down {
    transform: rotate(180deg);
}

.filters-container {
    display: block;
}

.filters-title {
    font-size: 20px;
    font-weight: 700;
    color: #364167;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff6600;
}

.filters-title i {
    color: #ff6600;
    margin-right: 10px;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group-title {
    font-size: 16px;
    font-weight: 600;
    color: #364167;
    margin-bottom: 15px;
}

.filter-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.filter-input:focus {
    border-color: #ff6600;
}

.filter-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    user-select: none;
}

.filter-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #ff6600;
}

.filter-checkbox:hover {
    color: #ff6600;
}

.price-filter {
    padding: 10px 0;
}

.price-range {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e0e0e0;
    outline: none;
    -webkit-appearance: none;
}

.price-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff6600;
    cursor: pointer;
}

.price-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff6600;
    cursor: pointer;
    border: none;
}

.price-display {
    margin-top: 10px;
    font-weight: 600;
    color: #ff6600;
}

.filter-select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s;
}

.filter-select:focus {
    border-color: #ff6600;
}

.btn-clear-filters {
    width: 100%;
    padding: 12px;
    background: #f5f5f5;
    color: #666;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-clear-filters:hover {
    background: #ff6600;
    color: #fff;
    border-color: #ff6600;
}

.products-section {
    padding-left: 30px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.products-title {
    font-size: 24px;
    font-weight: 700;
    color: #364167;
}

.view-options {
    display: flex;
    gap: 10px;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s;
}

.view-btn:hover,
.view-btn.active {
    background: #ff6600;
    color: #fff;
    border-color: #ff6600;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.products-grid.list-view {
    grid-template-columns: 1fr;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card .btn-eu-quero,
.product-card .btn-ver-detalhes {
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.product-card.list-view {
    flex-direction: row;
    max-height: 200px;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #f5f5f5;
}

.product-card.list-view .product-image {
    width: 200px;
    height: 100%;
    flex-shrink: 0;
}

.product-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.product-stock-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    padding: 6px 12px;
    background: #f0f8ff;
    border-radius: 6px;
    border-left: 3px solid #25d366;
}

.product-stock-info i {
    color: #25d366;
    font-size: 16px;
}

.product-stock-info span {
    font-weight: 600;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #364167;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-actions {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.btn-ver-detalhes {
    width: 100%;
    padding: 10px;
    background: #364167;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-ver-detalhes:hover {
    background: #2c3452;
    transform: translateY(-2px);
}

.btn-ver-detalhes i {
    font-size: 16px;
}

.product-card.list-view .product-description {
    -webkit-line-clamp: 3;
}

.product-badge-lote {
    background: #ff6600;
    color: #fff;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.6px;
    padding: 4px 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    box-shadow: 0 6px 16px rgba(255, 102, 0, 0.25);
    border: 2px solid rgba(255, 102, 0, 0.35);
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 15px;
}

.product-price-old {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.product-discount {
    display: inline-block;
    background: #ff4500;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.btn-eu-quero {
    width: 100%;
    padding: 12px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-eu-quero:hover {
    background: #20ba5a;
    color: #fff;
    text-decoration: none;
    transform: scale(1.02);
}

.btn-eu-quero i {
    font-size: 20px;
}

.no-products {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.no-products i {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
}

.no-products h3 {
    font-size: 24px;
    color: #666;
    margin-bottom: 10px;
}

.no-products p {
    color: #999;
}

.loja-footer {
    background: #364167;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo img {
    max-height: 60px;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-info i {
    margin-right: 10px;
    color: #ff6600;
}

.footer-info .cnpj {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s;
}

.social-link.whatsapp {
    background: #25d366;
}

.social-link.facebook {
    background: #3b5998;
}

.social-link.instagram {
    background: #e4405f;
}

.social-link:hover {
    transform: translateY(-3px);
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #999;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: scale(1.1);
    color: #fff;
    text-decoration: none;
}

.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transform: scale(0.9);
    transition: transform 0.3s;
}

.product-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
    z-index: 10002;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #ff6600;
    color: #fff;
    transform: rotate(90deg);
}

.modal-body {
    padding: 0;
}

.modal-product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-product-media {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 12px 0 0 12px;
    position: relative;
}

.product-media-container {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.product-main-image {
    flex: 1;
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-media-item {
    display: none;
    width: 100%;
    height: 100%;
}

.main-media-item.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-media-main {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    width: 100%;
    display: block;
    cursor: zoom-in;
    transition: transform 0.3s;
}

.product-media-main:hover {
    transform: scale(1.02);
}

.product-media-main video {
    max-height: 500px;
    width: 100%;
    border-radius: 8px;
}

.product-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100px;
    flex-shrink: 0;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 5px;
}

.product-thumbnails::-webkit-scrollbar {
    width: 6px;
}

.product-thumbnails::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.product-thumbnails::-webkit-scrollbar-thumb {
    background: #ff6600;
    border-radius: 3px;
}

.thumbnail-item {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
    background: #fff;
    flex-shrink: 0;
}

.thumbnail-item:hover {
    border-color: #ff6600;
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: #ff6600;
    box-shadow: 0 0 0 2px rgba(255,102,0,0.3);
}

.thumbnail-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumbnail-video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 24px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    pointer-events: none;
}

.zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.zoom-modal.active {
    opacity: 1;
    visibility: visible;
}

.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.zoom-content {
    position: relative;
    z-index: 20001;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.zoom-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    transition: all 0.3s;
    z-index: 20002;
}

.zoom-close:hover {
    background: #ff6600;
    color: #fff;
    transform: rotate(90deg);
}

.modal-product-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.modal-product-header {
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.modal-product-category {
    display: inline-block;
    background: #ff6600;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.modal-product-title {
    font-size: 28px;
    font-weight: 700;
    color: #364167;
    line-height: 1.3;
    margin: 0;
}

.modal-product-price-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff6600;
}

.modal-price-main {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.modal-price {
    font-size: 36px;
    font-weight: 800;
    color: #ff6600;
}

.modal-price-old {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.modal-discount {
    background: #ff4500;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
}

.modal-economy {
    color: #25d366;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.modal-stock-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px 15px;
    background: #f0f8ff;
    border-radius: 8px;
    border-left: 4px solid #25d366;
    font-size: 15px;
    color: #333;
}

.modal-stock-info i {
    color: #25d366;
    font-size: 20px;
}

.modal-stock-info strong {
    color: #364167;
}

.modal-product-description {
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.modal-product-description h3 {
    font-size: 18px;
    font-weight: 700;
    color: #364167;
    margin-bottom: 15px;
}

.modal-product-description p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.modal-product-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-lote-itens {
    margin-top: 20px;
}

.modal-lote-itens h3 {
    font-size: 18px;
    font-weight: 700;
    color: #364167;
    margin: 0 0 12px;
}

.modal-lote-table-wrap {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: auto;
    background: #fafafa;
}

.modal-lote-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.modal-lote-table thead th {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1;
    text-align: left;
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    color: #364167;
    font-weight: 800;
}

.modal-lote-table tbody td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    color: #333;
    vertical-align: top;
}

.modal-lote-table tbody tr:last-child td {
    border-bottom: none;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #666;
}

.detail-item i {
    color: #ff6600;
    font-size: 18px;
    width: 24px;
}

.modal-product-actions {
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.btn-modal-whatsapp {
    width: 100%;
    padding: 18px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    margin-bottom: 15px;
}

.btn-modal-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
    color: #fff;
    text-decoration: none;
}

.btn-modal-whatsapp i {
    font-size: 24px;
}

.modal-note {
    font-size: 13px;
    color: #999;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

.modal-note i {
    color: #ff6600;
    margin-right: 5px;
}

.modal-product-highlight {
    background: linear-gradient(135deg, #fff4e6 0%, #ffe6cc 100%);
    border-left: 4px solid #ff6600;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.modal-product-highlight i {
    color: #ff6600;
    font-size: 20px;
    margin-top: 2px;
}

.modal-product-highlight p {
    margin: 0;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

.modal-payment-info {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #25d366;
}

.modal-payment-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #364167;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-payment-info h3 i {
    color: #25d366;
}

.modal-payment-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.pix-info {
    background: #e8f5e9;
    padding: 12px 15px;
    border-radius: 6px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2e7d32;
    font-weight: 600;
}

.pix-info i {
    font-size: 20px;
}

.modal-share-link {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #364167;
}

.modal-share-link label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #364167;
    margin-bottom: 10px;
}

.share-link-container {
    display: flex;
    gap: 10px;
}

.share-link-input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    background: #fff;
    color: #666;
    cursor: text;
}

.share-link-input:focus {
    outline: none;
    border-color: #ff6600;
}

.btn-copy-link {
    padding: 10px 20px;
    background: #364167;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.btn-copy-link:hover {
    background: #2c3452;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .modal-product-content {
        grid-template-columns: 1fr;
    }

    .modal-product-media {
        border-radius: 12px 12px 0 0;
        padding: 20px;
    }

    .product-media-container {
        flex-direction: column;
    }

    .product-thumbnails {
        flex-direction: row;
        width: 100%;
        max-height: 100px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 5px;
    }

    .thumbnail-item {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }

    .product-main-image {
        min-height: 300px;
    }

    .product-media-main {
        max-height: 300px;
    }

    .zoom-close {
        top: -40px;
        right: 10px;
    }

    .modal-product-info {
        padding: 25px 20px;
    }

    .modal-product-title {
        font-size: 22px;
    }

    .modal-price {
        font-size: 28px;
    }

    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
}

@media (max-width: 991px) {
    .category-filters {
        display: none;
    }

    .filters-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 20px;
        padding: 0;
    }

    .filters-toggle-mobile {
        display: flex;
    }

    .filters-container {
        display: none;
        padding: 20px;
        background: #fff;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .filters-sidebar.filters-open .filters-container {
        display: block;
    }

    .products-section {
        padding-left: 0;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .search-section {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }

    .whatsapp-header span {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-banner {
        display: none;
        padding: 0;
        margin-bottom: 0;
    }

    .banner-content {
        padding: 30px 0;
    }

    .banner-promo-image {
        min-height: 300px;
        object-fit: cover;
    }

    .banner-title {
        font-size: 32px;
    }

    .banner-subtitle {
        font-size: 18px;
    }

    .banner-features {
        gap: 15px;
    }

    .banner-feature {
        padding: 12px 20px;
        font-size: 14px;
    }

    .banner-feature i {
        font-size: 20px;
    }

    .banner-btn {
        padding: 15px 35px;
        font-size: 16px;
    }

    .category-filter-btn {
        min-width: 80px;
        padding: 12px 15px;
    }

    .category-filter-btn i {
        font-size: 24px;
    }

    .category-filter-btn span {
        font-size: 11px;
    }

    .header-actions {
        display: flex;
        gap: 10px;
    }

    .admin-link span,
    .whatsapp-header span {
        display: none;
    }

    .category-filters {
        display: none !important;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }

    .product-card {
        border-radius: 12px;
        overflow: hidden;
    }

    .product-image {
        height: 200px;
        border-radius: 0;
    }

    .product-info {
        padding: 12px;
    }

    .product-title {
        font-size: 15px;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .product-description {
        font-size: 13px;
        margin-bottom: 10px;
        -webkit-line-clamp: 2;
    }

    .product-price {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .product-price-old {
        font-size: 14px;
    }

    .product-discount {
        font-size: 11px;
        padding: 3px 6px;
    }

    .product-category {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .btn-ver-detalhes,
    .btn-eu-quero {
        padding: 10px;
        font-size: 13px;
    }

    .btn-ver-detalhes i,
    .btn-eu-quero i {
        font-size: 14px;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
    }

    .products-title {
        font-size: 20px;
    }

    .view-options {
        width: 100%;
        justify-content: flex-end;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
