/* Perfex Store - Media Queries Adicionais */

/* Tablet grande */
@media (max-width: 992px) {
    .checkout-grid,
    .product-detail-layout {
        grid-template-columns: 1fr;
    }
    .order-summary,
    .product-detail-sidebar {
        position: static;
        top: auto;
    }
    .product-detail {
        display: block;
    }
    .store-filters-form {
        grid-template-columns: 1fr 1fr;
    }
    .filter-search {
        grid-column: 1 / -1;
    }
    .filter-submit {
        grid-column: 1 / -1;
        width: 100%;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .store-navbar .nav-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
    .store-search {
        order: 3;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    .store-banner {
        padding: 40px 15px;
    }
    .store-banner h1 {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }
    .checkout-section {
        padding: 20px 15px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-row-3 {
        grid-template-columns: 1fr 1fr;
    }
    .product-gallery {
        grid-template-columns: 1fr;
    }
    .product-gallery-thumbs {
        flex-direction: row;
        overflow-x: auto;
    }
    .product-gallery-thumbs img {
        flex-shrink: 0;
    }
    .product-detail-info {
        padding: 20px 0 0;
    }
    .tabs-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .tabs-nav button {
        white-space: nowrap;
        flex-shrink: 0;
    }
    .thanks-container {
        margin: 30px auto;
    }
    .mini-cart {
        width: 100%;
        right: -100%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    body {
        overflow-x: hidden;
    }
    .store-container,
    .checkout-container,
    .product-detail {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    .store-filters-form {
        grid-template-columns: 1fr;
    }
    .checkout-section {
        padding: 18px 14px;
    }
    .order-summary {
        order: -1;
        margin-bottom: 16px;
    }
    .checkout-grid > div:last-child {
        order: -1;
    }
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .product-card .product-info {
        padding: 10px;
    }
    .product-title {
        font-size: 0.88rem;
    }
    .current-price {
        font-size: 1.1rem;
    }
    .store-banner h1 {
        font-size: 1.4rem;
    }
    .store-banner .banner-subtitle {
        font-size: 1rem;
    }
    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .form-row-3 {
        grid-template-columns: 1fr;
    }
    .store-toast {
        left: 15px;
        right: 15px;
        max-width: none;
    }
    .thanks-icon {
        font-size: 3.5rem;
    }
    .thanks-container h1 {
        font-size: 1.5rem;
    }
    .order-info-row {
        flex-direction: column;
        gap: 4px;
    }
}

/* Impressão */
@media print {
    .store-navbar,
    .mini-cart,
    .mini-cart-overlay,
    .store-toast,
    .buy-box,
    .store-footer { display: none !important; }
    .product-detail { margin: 0; }
}
