/* RESET E CONFIGURAÇÕES GERAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #1a252f;      /* Azul escuro elegante */
    --accent-gold: #d4af37;        /* Dourado para detalhes religiosos */
    --accent-gold-hover: #b89628;  /* Tom dourado mais escuro para hover */
    --whatsapp-green: #25d366;
    --whatsapp-hover: #1ebd56;
    --bg-light: #f8f9fa;
    --text-dark: #2c3e50;
    --border-color: #e2e8f0;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* CABEÇALHO */
.header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 0;
    border-bottom: 3px solid var(--accent-gold);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* ESTILO DA LOGO NA HEADER */
.brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.03);
}

.header-info {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
}

/* BOTÃO DE WHATSAPP ELEGANTE E DISCRETO */
.btn-whatsapp-top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 6px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp-top:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.wa-icon-wrapper {
    width: 32px;
    height: 32px;
    background-color: var(--whatsapp-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.wa-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.1;
}

.wa-label {
    font-size: 0.68rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
}

.wa-number {
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 600;
}

/* HERO SECTION COM CARROSSEL */
.hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 80px 20px;
    color: white;
}

/* SLIDER DE FUNDO */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

/* MÁSCARA ESCURA SOBRE O SLIDER */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 37, 47, 0.85);
    z-index: 2;
}

/* CONTEÚDO PRINCIPAL */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* BOTÕES PADRÃO */
.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-color);
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* CATÁLOGO E CARDS */
.catalog-section {
    padding: 50px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-admin-toggle {
    display: none;
    background-color: #34495e;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-admin-toggle:hover {
    background-color: #2c3e50;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.product-img:hover {
    opacity: 0.95;
    transform: scale(1.02);
}

.product-info {
    padding: 15px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.product-price {
    color: #27ae60;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-desc {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
}

.btn-buy {
    width: 100%;
    background-color: var(--whatsapp-green);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-buy:hover {
    background-color: var(--whatsapp-hover);
}

/* FORMULÁRIO DE PERSONALIZAÇÃO */
.custom-section {
    padding: 50px 0;
    background-color: #eef2f5;
}

.custom-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.custom-card h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.custom-card p {
    margin-bottom: 20px;
    color: #555;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
}

.btn-whatsapp-large {
    width: 100%;
    background-color: var(--whatsapp-green);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp-large:hover {
    background-color: var(--whatsapp-hover);
}

/* MODAL DE ADMIN */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 550px;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.full-width {
    width: 100%;
}

/* SEÇÃO DE INFORMAÇÕES E RODAPÉ */
.info-section {
    padding: 50px 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-box {
    text-align: center;
    padding: 20px;
}

.info-box i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.btn-instagram {
    display: inline-block;
    margin-top: 10px;
    background: #e1306c;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* BOTÃO EXCLUIR PRODUTO (MODO ADMIN) */
.btn-delete {
    background-color: #d9534f;
    color: #ffffff;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: bold;
    margin-top: 10px;
    width: 100%;
    transition: background-color 0.2s ease;
}

.btn-delete:hover {
    background-color: #c9302c;
}

/* CURSOR E EFEITO HOVER NAS FOTOS DO CATÁLOGO */
.product-img {
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.product-img:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* CONTAINER DE IMAGEM COM SETAS NO CARTÃO */
.product-img-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: #f8f9fa;
    overflow: hidden;
}

.product-img-wrapper .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.product-img-wrapper .product-img:hover {
    opacity: 0.95;
    transform: scale(1.02);
}

/* SETAS DO CARROSSEL NO CARTÃO DO PRODUTO */
.card-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.card-nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.card-nav-btn.prev { left: 8px; }
.card-nav-btn.next { right: 8px; }

/* ETIQUETA CONTADORA DE FOTOS NO CARTÃO */
.card-img-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.65);
    color: #ffffff;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    pointer-events: none;
}

/* MODAL DE GALERIA E ZOOM DE IMAGEM */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.88);
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90%;
    max-height: 90vh;
}

.image-modal-content {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
    animation: zoomAnimation 0.25s ease-out;
}

.modal-counter {
    color: #ffffff;
    margin-top: 10px;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 12px;
    border-radius: 12px;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: none;
    font-size: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 2100;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev { left: 20px; }
.modal-next { right: 20px; }

.close-image-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 2100;
}

.close-image-modal:hover {
    color: #d9534f;
}

/* ANIMAÇÃO DE ABERTURA DO ZOOM */
@keyframes zoomAnimation {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* BOTÕES DE AÇÃO DO ADMIN NO CARD (EDITAR E EXCLUIR) */
.admin-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.btn-edit {
    flex: 1;
    background-color: #0284c7;
    color: #ffffff;
    border: none;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background-color 0.2s ease;
}

.btn-edit:hover {
    background-color: #0369a1;
}

.btn-delete {
    flex: 1;
    background-color: #d9534f;
    color: #ffffff;
    border: none;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background-color 0.2s ease;
}

.btn-delete:hover {
    background-color: #c9302c;
}

/* CONTAINER ESCURO E DESFOCADO (MODAL OVERLAY) */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(5px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

/* CAIXINHA FLUTUANTE DO FORMULÁRIO COM ROLAGEM */
.modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 520px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 28px 30px;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: modalFloat 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ANIMAÇÃO DE ENTRADA SUAVE */
@keyframes modalFloat {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* TÍTULO DO MODAL */
.modal-content h2 {
    margin-top: 0;
    margin-bottom: 18px;
    color: #1e293b;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* BOTÃO DE FECHAR (X) */
.close-btn {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 26px;
    font-weight: bold;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: #ef4444;
}

/* ORGANIZAÇÃO DOS CAMPOS EM COLUNA ÚNICA */
.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-content label {
    font-weight: 600;
    color: #334155;
    font-size: 0.88rem;
    margin-bottom: -4px;
}

.modal-content input[type="text"],
.modal-content textarea,
.modal-content input[type="file"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.95rem;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: #f8fafc;
}

.modal-content input[type="text"]:focus,
.modal-content textarea:focus {
    border-color: #0284c7;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.modal-content textarea {
    resize: vertical;
    min-height: 80px;
}

/* BOTÃO DE SALVAR */
.modal-content .btn-primary {
    margin-top: 8px;
    padding: 12px;
    background-color: #16a34a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.modal-content .btn-primary:hover {
    background-color: #15803d;
}

.modal-content .btn-primary:active {
    transform: scale(0.98);
}

/* SEÇÃO DE PERSONALIZAÇÃO MODERNA E ELEGANTE */
.custom-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.custom-card-wrapper {
    max-width: 940px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-top: 5px solid #d97706;
}

.custom-info {
    padding: 40px;
    background: #fafaf9;
    border-right: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    background: #fef3c7;
    color: #b45309;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.custom-info h2 {
    font-size: 1.65rem;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.custom-info p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.custom-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.custom-steps li {
    font-size: 0.9rem;
    color: #334155;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-steps li i {
    color: #16a34a;
}

.custom-form-box {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-form-box .form-group {
    margin-bottom: 18px;
}

.custom-form-box label {
    display: block;
    font-weight: 600;
    color: #334155;
    font-size: 0.88rem;
    margin-bottom: 6px;
}

/* ÍCONES INTERNOS NOS CAMPOS DE TEXTO */
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 14px;
    color: #94a3b8;
    font-size: 0.95rem;
    pointer-events: none;
}

.input-with-icon.align-top i {
    top: 14px;
}

.input-with-icon input,
.input-with-icon textarea {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.95rem;
    background-color: #f8fafc;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

/* FOCO NOS CAMPOS COM ÍCONE */
.input-with-icon input:focus,
.input-with-icon textarea:focus {
    border-color: #d97706;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.12);
    outline: none;
}

/* BOTÃO GRANDE DE WHATSAPP */
.btn-whatsapp-large {
    width: 100%;
    padding: 14px;
    background-color: #25d366;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-large:hover {
    background-color: #1eb954;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

/* =========================================================
   POSICIONAMENTO FLUTUANTE DO CARRINHO E WHATSAPP
   ========================================================= */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

/* BOTÃO E GAVETA LATERAL DO CARRINHO */
#cart-button {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #d4af37;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* TRAVAS PARA IMPEDIR O BOTÃO GIGANTE */
    width: auto !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: flex-end;
    z-index: 10000;
}

.cart-modal.open {
    display: flex !important;
}

.cart-content {
    background-color: #ffffff;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

Aqui está a Última Parte totalmente limpa e livre de caracteres invisíveis para colar no final do seu arquivo style.css:

CSS
/* RODAPÉ MODERNO E ELEGANTE */
.site-footer {
    background-color: #0f172a;
    color: #f8fafc;
    padding: 60px 20px 40px 20px;
    border-top: 4px solid #d97706;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.footer-card {
    background: #1e293b;
    padding: 30px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #334155;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.footer-icon {
    width: 58px;
    height: 58px;
    background: rgba(217, 119, 6, 0.15);
    color: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.footer-card h3 {
    font-size: 1.15rem;
    color: #ffffff;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.footer-content {
    font-size: 0.92rem;
    color: #cbd5e1;
    line-height: 1.6;
    width: 100%;
}

.footer-content p {
    margin: 0 0 8px 0;
}

.footer-content strong {
    color: #f8fafc;
}

/* BOTÕES DE REDE SOCIAL E LOCALIZAÇÃO */
.btn-location {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 18px;
    background-color: #0284c7;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-location:hover {
    background-color: #0369a1;
    transform: scale(1.02);
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-instagram:hover {
    opacity: 0.92;
    transform: scale(1.02);
}

/* BOTÃO FLUTUANTE DO WHATSAPP */
.whatsapp-float {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

/* BOTÃO E GAVETA LATERAL DO CARRINHO */
#cart-button {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #d4af37;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    justify-content: flex-end;
}

.cart-modal.active {
    display: flex;
}

.cart-content {
    background: #ffffff;
    width: 100%;
    max-width: 380px;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    color: #333333;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart {
    font-size: 28px;
    cursor: pointer;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eeeeee;
}

.delivery-option,
#address-fields {
    margin-top: 15px;
}

/* FORMULÁRIO E CAMPOS DO CARRINHO */
.cart-field-group {
    margin-top: 10px;
}

.cart-field-group label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: #333333;
}

.cart-field-group select,
.cart-field-group input,
.cart-field-group textarea,
#address-fields input,
#delivery-type {
    width: 100%;
    padding: 9px 10px;
    margin-bottom: 6px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.cart-field-group textarea {
    resize: vertical;
    font-family: inherit;
}

.btn-checkout {
    background: #25d366;
    color: #ffffff;
    border: none;
    padding: 14px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
}

/* NOTIFICAÇÃO FLUTUANTE (TOAST) */
#toast-notification {
    visibility: hidden;
    min-width: 250px;
    background-color: #2e7d32;
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
    padding: 12px 20px;
    position: fixed;
    z-index: 10001;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.3s, bottom 0.3s;
}

#toast-notification.show {
    visibility: visible;
    opacity: 1;
    bottom: 40px;
}

/* CONTROLES DE QUANTIDADE NO CARRINHO */
.qty-btn-group {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.qty-btn {
    background: #eeeeee;
    border: 1px solid #cccccc;
    width: 26px;
    height: 26px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #dddddd;
}

.qty-value {
    font-weight: bold;
    font-size: 0.95rem;
    min-width: 18px;
    text-align: center;
}

.shipping-notice {
    font-size: 0.8rem;
    color: #666666;
    background: #f9f9f9;
    border-left: 3px solid #d4af37;
    padding: 8px 10px;
    margin-top: 10px;
    border-radius: 0 4px 4px 0;
    line-height: 1.3;
}

/* SELETOR DE QUANTIDADE NOS CARDS DO CATÁLOGO */
.card-action-row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 10px;
}

.card-qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #cccccc;
    border-radius: 5px;
    overflow: hidden;
    background: #ffffff;
}

.card-qty-btn {
    background: #f0f0f0;
    border: none;
    width: 30px;
    height: 38px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    color: #333333;
}

.card-qty-btn:hover {
    background: #e0e0e0;
}

.card-qty-input {
    width: 32px;
    height: 38px;
    border: none;
    text-align: center;
    font-weight: bold;
    font-size: 0.95rem;
}

/* BUSCA E FILTROS DO CATÁLOGO */
.catalog-filters {
    max-width: 1200px;
    margin: 20px auto 10px;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    box-sizing: border-box;
}

.search-box input:focus {
    border-color: #25d366;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #888888;
}

.category-buttons {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.cat-btn {
    background: #f0f0f0;
    border: 1px solid #dddddd;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    font-weight: bold;
    font-size: 0.88rem;
    color: #444444;
    transition: all 0.2s;
}

.cat-btn.active,
.cat-btn:hover {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
}

/* COMPONENTES DOS CARDS DO PRODUTO */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4757;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
    text-transform: uppercase;
}

.btn-favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 2;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.btn-favorite:hover {
    transform: scale(1.1);
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.old-price {
    text-decoration: line-through;
    color: #888888;
    font-size: 0.9rem;
}

.installment-text {
    font-size: 0.78rem;
    color: #27ae60;
    font-weight: 600;
}

.card-variations-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.card-variation-select {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    font-size: 0.85rem;
    background: #fdfdfd;
    color: #333333;
}

/* RESPONSIVIDADE PARA DISPOSITIVOS MÓVEIS */
@media (max-width: 768px) {
    .custom-card-wrapper {
        grid-template-columns: 1fr;
    }

    .custom-info,
    .custom-form-box {
        padding: 24px;
    }

    .custom-info {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }

    header a[href*="wa.me"],
    header a[href*="whatsapp"] {
        display: none !important;
    }
}

/* BARRA DE PESQUISA COMPACTA E CENTRALIZADA */
.search-box {
    max-width: 600px !important; /* Impede a barra de ocupar a tela toda */
    margin: 20px auto 10px auto !important; /* Centraliza a busca */
}

.search-box input {
    height: 42px !important;
    padding: 0 15px 0 40px !important;
    font-size: 0.9rem !important;
}

/* ÁREA DE NOVA CATEGORIA COMPACTA */
#category-admin-box,
div:has(> input[placeholder*="Velas"]) {
    display: flex !important;
    gap: 10px !important;
    max-width: 480px !important; /* Largura máxima controlada */
    margin: 15px auto !important; /* Centraliza o bloco */
    align-items: center !important;
}

#category-admin-box input,
input[placeholder*="Velas"] {
    flex: 1 !important;
    height: 38px !important;
    margin: 0 !important;
    padding: 0 12px !important;
}

#category-admin-box button,
input[placeholder*="Velas"] + button {
    height: 38px !important;
    white-space: nowrap !important;
    padding: 0 18px !important;
    margin: 0 !important;
}

/* Container Geral da Barra de Busca e Filtros */
.catalog-controls {
    max-width: 900px;
    margin: 0 auto 30px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Barra de Busca */
.search-box {
    width: 100%;
    max-width: 550px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 2px solid #2e7d32;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.search-box .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #2e7d32;
    font-size: 18px;
}

/* Botões de Filtro de Categoria (Tags/Chips Modernos) */
#category-filters-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.filter-btn {
    background-color: #f4f6f8;
    border: 1px solid #dcdfe3;
    color: #4a5568;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.filter-btn:hover {
    background-color: #e2e8f0;
    border-color: #cbd5e0;
}

.filter-btn.active {
    background-color: #2e7d32;
    color: #ffffff;
    border-color: #2e7d32;
    box-shadow: 0 3px 8px rgba(46, 125, 50, 0.3);
}

/* Form de Adicionar Categoria (Admin) */
.admin-category-form {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 5px;
}

.admin-category-form input {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    width: 220px;
}

.admin-category-form button {
    background-color: #2e7d32;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.admin-category-form button:hover {
    background-color: #1b5e20;
}

/* Cabeçalho do Catálogo (Título + Botão Admin) */
.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 40px auto 20px auto;
    padding: 0 15px;
}

.catalog-header h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 0;
}

.btn-admin-modal {
    background-color: #34495e;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-admin-modal:hover {
    background-color: #2c3e50;
}