
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 150px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.search-container {
    width: 90%;
    max-width: 800px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 20px 60px 20px 20px;
    font-size: 28px;
    border: none;
    border-bottom: 2px solid #000000;
    background: transparent;
    outline: none;
    font-weight: 300;
    letter-spacing: 1px;
}

.search-input::placeholder {
    color: #999999;
}

.close-search {
    position: absolute;
    top: 20px;
    right: 0;
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    color: #000000;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-search:hover {
    color: #666666;
}

/* Nav Container adicional (font-family diferente) */
.nav-container {
    font-family: "Basic Commercial", Arial, sans-serif;	
    text-color: #ffffff;
    font-weight: 400;
}

/* Nav Left open state */
.nav-left.open {
    max-height: 500px;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 6px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 2000;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px; 
    font-weight: 500; 
}

.cart-header button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s ease;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-header button:hover {
    transform: scale(1.1);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
    font-size: 12px;
    gap: 10px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    margin-bottom: 5px;
    font-size: 12px;
}

.cart-item-size {
    color: #999;
    font-size: 12px; 
    margin-bottom: 3px;
}

.cart-item-price {
    color: #666;
    font-size: 12px; 
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 8px;
}

.quantity-controls button {
    background: #f0f0f0;
    border: none;
    padding: 2px 8px;
    cursor: pointer;
    font-size: 12px; 
    border-radius: 3px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.quantity-controls button:hover {
    background: #ddd;
}

.quantity-controls span {
    min-width: 15px;
    text-align: center;
    font-size: 12px; 
    font-weight: 500;
}

.remove-btn {
    background: none;
    border: none;
    color: #e74c3c;
    font-size: 12px; 
    cursor: pointer;
    padding: 5px;
    transition: transform 0.2s ease;
	text-decoration: none;
}

.remove-btn:hover {
    transform: scale(1.2);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #ddd;
}

.cart-summary {
    margin-bottom: 20px;
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 12px; 
}

.cart-summary-line.total {
    font-weight: bold;
    font-size: 12px; 
    padding-top: 10px;
    border-top: 1px solid #000;
    margin-top: 10px;
}

.payment-options {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 4px;
}

.payment-title {
    font-size: 12px; 
    font-weight: 500; 
    letter-spacing: normal;
    text-transform: none;
    margin-bottom: 12px;
    color: #333;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 8px;
    margin-bottom: 5px;
    cursor: pointer;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #000;
    background: #fafafa;
}

.payment-option input[type="radio"] {
    margin-right: 8px;
    cursor: pointer;
    width: 14px;
    height: 14px;
}

.payment-option label {
    font-size: 12px; 
    cursor: pointer;
    flex: 1;
    font-weight: 400;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 12px; 
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    transition: background 0.3s ease;
}

.checkout-btn:hover {
    background: #333;
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Products Section */
.products-section {
    margin-top: 100px;
    padding: 40px 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid padrão sem borda */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Produto destaque (primeiro relógio) */
.product-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.product-card.featured .product-image {
    height: 750px;
}

.product-card.featured .product-info {
    display: none;
}

/* Produto card - sem borda */
.product-card {
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
   
}

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

.product-info {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-name {
    font-size: 12px;
}

.product-price {
    font-size: 12px;
    color: #000;
    white-space: nowrap;
    margin-left: 15px;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

/* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.product-modal.open {
    display: flex;
}

.modal-content {
    background: white;
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    margin: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.modal-gallery {
    display: flex;
    gap: 15px;
}

.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    background: #f8f8f8;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #000;
}

.main-image-container {
    flex: 1;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 550px;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-details {
    display: flex;
    flex-direction: column;
}

.modal-product-category {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.modal-product-name {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.modal-product-price {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 25px;
}

.modal-product-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.size-selector {
    margin-bottom: 30px;
    margin: 20px 0;
}

.size-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
}

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

.size-option {
    padding: 12px 20px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    min-width: 60px;
    text-align: center;
    padding: 10px 20px;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    min-width: 50px;
    text-align: center;
    user-select: none;
}

.size-option:hover {
    border-color: #000;
    background-color: #f5f5f5;
}

.size-option.selected {
    background: #000;
    color: white;
    border-color: #000;
    background-color: #000;
    color: #fff;
}

.size-helper {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500;
}

.add-to-cart-btn {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.3s ease;
    margin-top: auto;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.add-to-cart-btn:hover {
    background: #333;
}

.add-to-cart-btn:hover:not(:disabled) {
    background-color: #333;
}

.add-to-cart-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Added Modal */
.added-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.added-modal.open {
    display: flex;
}

.added-modal-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 450px;
    width: 100%;
}

.added-modal-icon {
    font-size: 64px;
    color: #27ae60;
    margin-bottom: 20px;
}

.added-modal-title {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 500;
}

.added-modal-text {
    color: #666;
    margin-bottom: 30px;
    font-size: 15px;
}

.added-modal-buttons {
    display: flex;
    gap: 15px;
}

.modal-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.modal-btn-primary {
    background: #000;
    color: white;
}

.modal-btn-primary:hover {
    background: #333;
}

.modal-btn-secondary {
    background: #f0f0f0;
    color: #000;
}

.modal-btn-secondary:hover {
    background: #ddd;
}

/* Checkout Modal */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.checkout-modal.open {
    display: flex;
}

.checkout-modal-content {
    background: white;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border-radius: 8px;
}

.checkout-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.checkout-modal-body {
    padding: 40px;
}

.checkout-modal-title {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
}

.payment-summary {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.payment-summary-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #333;
}

.pix-payment, .card-payment {
    margin-top: 20px;
}

.pix-qrcode {
    text-align: center;
    font-size: 120px;
    margin: 30px 0;
}

.pix-code {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 11px;
    word-break: break-all;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.pix-instructions {
    background: #fff3cd;
    padding: 15px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
    border: 1px solid #ffc107;
}

.copy-pix-btn {
    width: 100%;
    padding: 12px;
    background: #27ae60;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.copy-pix-btn:hover {
    background: #229954;
}

.card-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #000;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.confirm-payment-btn {
    width: 100%;
    padding: 15px;
    background: #000;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 10px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.confirm-payment-btn:hover {
    background: #333;
}

/* Footer Section */
.footer-section h3 {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Paginação */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
    padding: 20px;
}

.pagination-btn {
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 14px;
}

.pagination-btn:hover {
    background-color: #333;
}

.pagination-numbers {
    display: flex;
    gap: 5px;
}

.pagination-number {
    padding: 8px 12px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 14px;
}

.pagination-number:hover {
    background-color: #ddd;
}

.pagination-number.active {
    background-color: #000;
    color: #fff;
    pointer-events: none;
}

/* Sem produtos */
.no-products {
    text-align: center;
    padding: 60px 20px;
}

.no-products p {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}

.btn-voltar {
    display: inline-block;
    padding: 8px 15px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s;
}

.btn-voltar:hover {
    background-color: #333;
}

/* Filtros ativos */
.filters-active {
    text-align: center;
    padding: 20px;
    background-color: #f5f5f5;
    margin-bottom: 20px;
    border-radius: 5px;
}

.filter-tag {
    display: inline-block;
    padding: 8px 15px;
    background-color: #000;
    color: #fff;
    border-radius: 20px;
    margin: 5px;
    font-size: 14px;
}

.filter-tag a {
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
}

/* Badge de estoque */
.stock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff4444;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

.stock-badge.low-stock {
    background-color: #ff9800;
}

/* CARRINHO - Imagem e Controles */
.cart-item-img {
    width: 50px; 
    height: 50px; 
    object-fit: cover;
    border-radius: 3px;	
    margin-right: 8px;	
    flex-shrink: 0;	
}

.cart-item-details {
    flex-grow: 1;	
    margin-right: 5px;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;	
    margin-left: 10px;
    flex-shrink: 0;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 5px;	
    background-color: #f5f5f5;
    border-radius: 3px;
    padding: 1px;
    margin-top: 5px;	
}

.quantity-control button {
    width: 20px;
    height: 20px;
    padding: 0;
    line-height: 1;	
    font-size: 14px;
    font-weight: bold;
    color: #333;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    border-radius: 3px;
}

.quantity-control button:hover:not(:disabled) {
    background-color: #ddd;
}

.quantity-control span {
    font-size: 12px;
    font-weight: 500;
    min-width: 10px;	
    text-align: center;
}

.cart-item-actions .remove-btn {
    font-size: 12px;
    color: #cc0000;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 5px;
}

/* Media Queries Específicas */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 60px;
    }
    
    .mobile-icons {
        display: flex;
    }

    .logo {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .nav-right {
        display: none;
    }

    .nav-left {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        border-top: 1px solid #e0e0e0;
        padding: 15px 0;
        z-index: 999;
    }

    .nav-left.open {
        display: flex;
        max-height: none;
    }

    .nav-left .nav-item {
        margin: 10px 0;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-card.featured {
        grid-column: span 2;
        grid-row: span 2;
    }

    .product-image {
        height: 250px;
    }

    .product-card.featured .product-image {
        height: 500px;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .modal-body {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .modal-gallery {
        flex-direction: column;
    }

    .gallery-thumbnails {
        flex-direction: row;
        order: 2;
    }

    .main-image-container {
        min-height: 350px;
        order: 1;
    }

    .thumbnail {
        width: 60px;
        height: 75px;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 8px;
    }

    .pagination-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .pagination-number {
        padding: 6px 10px;
        font-size: 12px;
    }

    .section-title {
        font-size: 12px;
		text-align: left;
    }

    .section-title2 {
        font-size: 12px;
		text-align: left;
		text-transform: capitalize;
		margin-bottom: 20px;
    }
}
/* ===== ADICIONE ESTAS REGRAS AO SEU css/produtos.css ===== */

/* Grid de produtos com featured */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

/* Produto em destaque - ocupa 4 espaços */
.product-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

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

.product-card.featured .product-image {
  height: 100%;
  min-height: 600px;
}

.product-card .product-info {
  padding: 15px 10px;
  text-align: center;
}

.product-card.featured .product-info {
  padding: 20px 15px;
}

.product-card .product-name {
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 8px;
  color: #000;
  letter-spacing: 0.5px;
}

.product-card.featured .product-name {
  font-size: 16px;
  margin-bottom: 10px;
}

.product-card .product-price {
  font-size: 13px;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.5px;
}

.product-card.featured .product-price {
  font-size: 15px;
}

/* Responsivo para featured */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .product-card.featured {
    grid-column: span 2;
    grid-row: span 2;
  }

  .product-card.featured .product-image {
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
  }

  .product-card.featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .product-card.featured .product-image {
    height: auto;
    min-height: auto;
  }

  .product-card.featured .product-name {
    font-size: 14px;
  }

  .product-card.featured .product-price {
    font-size: 13px;
  }
}/* ===== ADICIONE ESTAS REGRAS AO SEU CSS EXISTENTE ===== */

/* Grid de produtos com featured */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}

.product-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.product-card.featured .product-image {
  height: 100%;
  object-fit: cover;
}

.product-card.featured .product-info {
  padding: 20px 15px;
}

.product-card.featured .product-name {
  font-size: 16px;
  margin-bottom: 10px;
}

.product-card.featured .product-price {
  font-size: 15px;
}

/* Responsivo para featured */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-card.featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-card.featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .product-card.featured .product-image {
    height: auto;
  }
  .catp{
	border-bottom: 1px solid #f0f0f0;	
  }
}

@media (max-width: 768px) {
    .product-info {
        flex-direction: column;     /* coloca um abaixo do outro */
        align-items: center;        /* centraliza horizontalmente */
        text-align: center;         /* centraliza o texto */
        gap: 8px;                   /* espaço entre nome e preço */
    }

    .product-name,
    .product-price {
        width: 100%;
    }
}

