/* ==========================================================================
   FATTO IN CASA — CHARCUTARIA PREMIUM
   Site Estático — CSS replicado do tema WordPress (site_funfa)
   ========================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f0e6d3;
    background-color: #1a1a1a;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(180, 130, 70, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 120px;
    height: auto;
    display: inline-block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    font-family: 'Libre Baskerville', 'Baskerville', 'Georgia', 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
}

.brand-subtitle {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
}

/* --- Header Actions (cart + hamburger) --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #39FF14;
    transition: color 0.3s;
    padding: 4px;
}

.nav-cart:hover {
    color: #7FFF00;
}

.cart-icon-svg {
    display: block;
    width: 30px;
    height: 30px;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -6px;
    background: #b48246;
    color: #1a1a1a;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* --- Hamburger --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(180, 130, 70, 0.3);
    border-radius: 6px;
    cursor: pointer;
    padding: 8px;
    transition: border-color 0.3s;
    z-index: 1001;
}

.hamburger:hover {
    border-color: #b48246;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #c4b9a8;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Main Nav --- */
.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    font-size: 1.05rem;
    color: #c4b9a8;
    transition: color 0.3s;
    padding: 6px 0;
}

.main-nav a:hover {
    color: #e6c88a;
}

/* Spacer do header fixo */
.header-spacer {
    height: 60px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #b48246;
    color: #1a1a1a;
}

.btn-primary:hover {
    background: #d49a5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 130, 70, 0.3);
}

.btn-block {
    width: 100%;
    display: block;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ==========================================================================
   SECTIONS GERAIS
   ========================================================================== */
.section {
    padding: 80px 0;
}

.section-dark {
    background: #222;
}

.section-highlight {
    background: linear-gradient(135deg, #2a2018 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(180, 130, 70, 0.2);
    border-bottom: 1px solid rgba(180, 130, 70, 0.2);
}

.section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #f0e6d3;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #c4b9a8;
    margin-bottom: 40px;
    font-weight: 400;
}

/* --- Two Columns --- */
.two-columns {
    display: flex;
    align-items: center;
    gap: 60px;
}

.text-block {
    flex: 1;
}

.text-block p {
    margin-bottom: 16px;
    color: #c4b9a8;
}

.text-block .highlight {
    font-size: 1.05rem;
    color: #e6c88a;
    font-style: italic;
    border-left: 3px solid #b48246;
    padding-left: 16px;
    margin-top: 20px;
}

.image-block {
    flex: 0 0 400px;
}

.image-block img {
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: url('../img/hero.png') center/cover no-repeat;
    padding-top: 80px;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 30%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #f0e6d3;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    color: #c4b9a8;
    margin-bottom: 30px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.hero-location {
    font-size: 0.85rem;
    color: #8a7f6e;
}

.hero-image {
    flex: 0 0 400px;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* ==========================================================================
   CARDS GRID / PRODUTOS
   ========================================================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.produtos-grid .card {
    display: flex;
    flex-direction: column;
}

/* --- Card de Produto --- */
.card {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 10px;
    padding: 19px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    border-color: rgba(180, 130, 70, 0.3);
}

.card img {
    width: 100%;
    height: 144px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 13px;
}

.card h3 {
    font-size: 0.95rem;
    color: #e6c88a;
    margin-bottom: 8px;
}

.card .descricao {
    font-size: 0.75rem;
    color: #a89a88;
    margin-bottom: 10px;
    flex-grow: 1;
}

.card .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.card .peso {
    font-size: 0.85rem;
    color: #8a7f6e;
}

.card .preco {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f0e6d3;
}

/* Controle de quantidade */
.qty-control {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.qty-control button {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border: 1px solid #3a3a3a;
    background: #222;
    color: #e6c88a;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
}

.qty-control button:hover {
    border-color: #b48246;
    background: #2a2a2a;
}

.qty-control input {
    width: 40px;
    height: 26px;
    border-radius: 6px;
    border: 1px solid #3a3a3a;
    background: #222;
    color: #f0e6d3;
    font-size: 0.85rem;
    text-align: center;
    outline: none;
}

.qty-control input:focus {
    border-color: #b48246;
}

/* Botão adicionar no card */
.add-btn {
    width: 100%;
    padding: 10px;
    background: #b48246;
    color: #1a1a1a;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.add-btn:hover {
    background: #d49a5a;
}

/* ==========================================================================
   PARA QUEM É (bullet list)
   ========================================================================== */
.bullet-list {
    list-style: none;
    padding: 0;
}

.bullet-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #c4b9a8;
}

.bullet-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #b48246;
    font-weight: 700;
}

/* ==========================================================================
   COMO COMPRAR (steps)
   ========================================================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.step {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-4px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #b48246;
    color: #1a1a1a;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 1.05rem;
    color: #e6c88a;
    margin-bottom: 8px;
}

.step p {
    font-size: 0.85rem;
    color: #a89a88;
}

/* ==========================================================================
   DEPOIMENTOS
   ========================================================================== */
.testimonial {
    text-align: center;
    padding: 32px 20px;
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    color: #d4c8b8;
    margin-bottom: 12px;
    line-height: 1.5;
}

.testimonial-author {
    font-size: 0.8rem;
    color: #b48246;
    font-weight: 600;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list details {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 16px 20px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.faq-list details:hover {
    border-color: rgba(180, 130, 70, 0.3);
}

.faq-list summary {
    font-weight: 600;
    color: #e6c88a;
    outline: none;
    cursor: pointer;
}

.faq-list p {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #a89a88;
    line-height: 1.5;
}

/* ==========================================================================
   CONTATO / CTA
   ========================================================================== */
.contact-section {
    text-align: center;
    max-width: 600px;
}

.contact-section h2 {
    margin-bottom: 20px;
}

.contact-section p {
    color: #c4b9a8;
    margin-bottom: 12px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: #111;
    padding: 30px 0;
    border-top: 1px solid rgba(180, 130, 70, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-left p,
.footer-right p {
    font-size: 0.82rem;
    color: #6a5f4e;
}

.footer-right a {
    color: #b48246;
    transition: color 0.3s;
}

.footer-right a:hover {
    color: #e6c88a;
}

/* ==========================================================================
   CARRINHO OFFCANVAS
   ========================================================================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: #1a1a1a;
    border-left: 1px solid rgba(180, 130, 70, 0.3);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(180, 130, 70, 0.2);
}

.cart-header h2 {
    font-size: 1.3rem;
    color: #f0e6d3;
}

.cart-close {
    background: transparent;
    border: none;
    color: #c4b9a8;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.cart-close:hover {
    color: #e6c88a;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 0.95rem;
    color: #f0e6d3;
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 0.9rem;
    color: #e6c88a;
}

.cart-item-total {
    font-size: 0.95rem;
    color: #f0e6d3;
    font-weight: 700;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cart-item-qty button {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid #3a3a3a;
    background: #222;
    color: #e6c88a;
    font-size: 0.9rem;
    cursor: pointer;
    line-height: 1;
}

.cart-item-qty button:hover {
    border-color: #b48246;
}

.cart-item-qty span {
    font-size: 0.9rem;
    color: #f0e6d3;
    min-width: 20px;
    text-align: center;
}

.cart-remove {
    background: transparent;
    border: none;
    color: #8a7f6e;
    font-size: 0.75rem;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s;
}

.cart-remove:hover {
    color: #ff6b6b;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #8a7f6e;
}

.cart-empty .empty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.cart-footer {
    border-top: 1px solid rgba(180, 130, 70, 0.2);
    padding: 16px 20px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cart-total span {
    font-size: 1.1rem;
    color: #c4b9a8;
}

.cart-total strong {
    font-size: 1.4rem;
    color: #f0e6d3;
}

/* ==========================================================================
   TOAST
   ========================================================================== */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #2a2a2a;
    color: #f0e6d3;
    border: 1px solid rgba(180, 130, 70, 0.3);
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 0.95rem;
    z-index: 3000;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text p {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        flex: 0 0 auto;
        max-width: 400px;
    }

    .two-columns {
        flex-direction: column;
        text-align: center;
    }

    .text-block .highlight {
        border-left: none;
        border-top: 3px solid #b48246;
        padding-left: 0;
        padding-top: 12px;
    }

    .image-block {
        flex: 0 0 auto;
        max-width: 400px;
    }
}

@media (max-width: 820px) {
    .hamburger {
        display: flex !important;
    }

    .header-content {
        padding: 4px 10px;
    }

    .logo {
        width: 70px;
    }

    .brand-name {
        font-size: 1.0rem;
    }

    .brand-subtitle {
        font-size: 0.5rem;
        letter-spacing: 1px;
    }

    .logo-area {
        gap: 6px;
    }

    .header-spacer {
        height: 48px;
    }

    .hamburger {
        width: 36px !important;
        height: 36px !important;
        padding: 6px !important;
        gap: 4px !important;
    }

    .hero {
        min-height: 60vh;
        padding-top: 50px;
    }

    .hero-text h1 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(26, 26, 26, 0.98);
        border-top: 1px solid rgba(180, 130, 70, 0.2);
        padding: 16px 0;
        gap: 4px;
        order: 3;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 12px 16px;
        font-size: 0.95rem;
        border-radius: 4px;
        text-align: center;
    }

    .main-nav a:hover {
        background: rgba(180, 130, 70, 0.1);
    }

    .section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero {
        min-height: 60vh;
        padding-top: 70px;
    }

    .hero-text h1 {
        font-size: 1.4rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .section h2 {
        font-size: 1.3rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card {
        padding: 16px;
    }

    .card img {
        height: 140px;
    }

    .card h3 {
        font-size: 1rem;
    }

    .brand-name {
        font-size: 1.6rem;
        letter-spacing: 0;
    }

    .brand-subtitle {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .logo {
        width: 100px;
    }

    .cart-sidebar {
        width: 100%;
    }
}

/* ==========================================================================
   CONTATO CARDS
   ========================================================================== */
.contact-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-card {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 32px 24px 24px;
    text-align: center;
    flex: 1 1 280px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.contact-icon svg {
    width: 32px;
    height: 32px;
}

.contact-icon-gold {
    background: #b4822e;
    color: #ffffff;
}

.contact-icon-green {
    background: #25d366;
    color: #ffffff;
}

.contact-icon-instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #ffffff;
}

.contact-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #b4822e;
    font-weight: 600;
}

.contact-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.contact-desc {
    font-size: 0.85rem;
    color: #999999;
}

.contact-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
    transition: opacity 0.2s;
}

.contact-btn:hover {
    opacity: 0.85;
    color: #ffffff;
}

.contact-btn-gold {
    background: #b4822e;
}

.contact-btn-green {
    background: #25d366;
}

.contact-btn-instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

@media (max-width: 768px) {
    .contact-cards {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        max-width: 100%;
    }
}

@media (max-width: 360px) {
    .brand-name {
        font-size: 1.3rem;
    }

    .logo {
        width: 80px;
    }
}

/* ==========================================================================
   BOTÃO DETALHES (CARD DE PRODUTO)
   ========================================================================== */
.detalhes-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #b48246;
    color: #1a1a1a;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
}

.detalhes-btn:hover {
    background: #d49a5a;
    color: #1a1a1a;
}

/* ==========================================================================
   PÁGINA DE DETALHES DO PRODUTO
   ========================================================================== */
.produto-detalhe-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.produto-galeria {
    flex: 1;
    max-width: 480px;
}

.galeria-principal {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #3a3a3a;
    margin-bottom: 12px;
    background: #2a2a2a;
}

.galeria-principal img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.galeria-miniaturas {
    display: flex;
    gap: 10px;
}

.galeria-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #3a3a3a;
    background: #2a2a2a;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.3s, transform 0.2s;
}

.galeria-thumb:hover {
    border-color: #b48246;
    transform: translateY(-2px);
}

.galeria-thumb.active {
    border-color: #b48246;
}

.galeria-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.produto-info {
    flex: 1;
    max-width: 480px;
}

.produto-info h2 {
    font-size: 1.8rem;
    color: #e6c88a;
    margin-bottom: 16px;
}

.produto-descricao {
    font-size: 1rem;
    color: #c4b9a8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.produto-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 16px 0;
    border-top: 1px solid rgba(180, 130, 70, 0.2);
    border-bottom: 1px solid rgba(180, 130, 70, 0.2);
}

.produto-peso {
    font-size: 1rem;
    color: #8a7f6e;
}

.produto-preco {
    font-size: 1.6rem;
    font-weight: 700;
    color: #f0e6d3;
}

.produto-qty {
    margin-bottom: 16px;
}

.produto-qty button {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
}

.produto-qty input {
    width: 56px;
    height: 36px;
    font-size: 1rem;
}

.produto-add-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    margin-bottom: 16px;
}

.produto-info .produto-voltar {
    display: inline-block;
    color: #b48246;
    font-size: 20px !important; /* Clearly larger than 14.4px */
    font-weight: 700 !important; /* Explicitly bold */
    text-decoration: none;
    transition: color 0.3s;
}

.produto-voltar:hover {
    color: #e6c88a;
}

.produto-nao-encontrado {
    text-align: center;
    padding: 60px 20px;
}

.produto-nao-encontrado h2 {
    font-size: 1.6rem;
    color: #e6c88a;
    margin-bottom: 12px;
}

.produto-nao-encontrado p {
    color: #c4b9a8;
    margin-bottom: 24px;
}

/* Responsivo — página de detalhes */
@media (max-width: 768px) {
    .produto-detalhe-layout {
        flex-direction: column;
        gap: 24px;
    }

    .produto-galeria,
    .produto-info {
        max-width: 100%;
    }

    .galeria-principal img {
        height: 300px;
    }
}
