/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #3d2b1f;
    background: #faf5ed;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input {
    font-family: inherit;
}

/* ========== TOP BANNER (Marquee) ========== */
.top-banner {
    background: #c9a96e;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    padding: 6px 0;
}

.top-banner-track {
    display: inline-flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
}

.top-banner-track span {
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== HEADER ========== */
.header {
    background: #3d2b1f;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(61,43,31,0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    color: #fff;
    font-size: 22px;
    display: none;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.logo-highlight {
    color: #c9a96e;
}

.logo-highlight i {
    color: #c9a96e;
    font-size: 20px;
    margin: 0 -2px;
}

.search-bar {
    flex: 1;
    display: flex;
    max-width: 500px;
    border-radius: 25px;
    overflow: hidden;
    background: #fff;
}

.search-bar input {
    flex: 1;
    padding: 10px 18px;
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
}

.search-btn {
    background: #b5563e;
    color: #fff;
    padding: 10px 18px;
    font-size: 16px;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #9c4833;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon-link {
    color: #fff;
    font-size: 22px;
    position: relative;
    transition: color 0.3s;
}

.icon-link:hover {
    color: #c9a96e;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #b5563e;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-search {
    display: none;
    background: #3d2b1f;
    padding: 8px 20px 14px;
}

/* ========== PRODUCT SECTION ========== */
.product-section {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Gallery */
.product-gallery {
    position: sticky;
    top: 90px;
}

.main-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f5efe6;
    margin-bottom: 15px;
    border: 1px solid #e0d5c7;
}

.main-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: all 0.3s;
}

.gallery-nav:hover {
    background: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.gallery-nav.prev { left: 12px; }
.gallery-nav.next { right: 12px; }

.thumbnail-list {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color 0.3s;
    background: #f5efe6;
}

.thumbnail.active {
    border-color: #b5563e;
}

.thumbnail:hover {
    border-color: #c4887b;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info {
    padding-top: 10px;
}

.product-title {
    font-size: 22px;
    font-weight: 700;
    color: #3d2b1f;
    line-height: 1.3;
    margin-bottom: 12px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #c9a96e;
    font-size: 14px;
}

.rating-text,
.questions-text {
    font-size: 13px;
    color: #666;
}

.separator {
    color: #ccc;
}

/* Price */
.product-price {
    margin-bottom: 18px;
}

.price-current {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.price-label {
    font-size: 14px;
    color: #666;
}

.price-value {
    font-size: 32px;
    font-weight: 800;
    color: #b5563e;
}

.discount-badge {
    background: #b5563e;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.price-old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 6px;
}

.price-installments {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.price-installments i {
    margin-right: 4px;
    color: #b5563e;
}

.pix-discount {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.pix-badge {
    background: #7a8c6e;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
}

.more-details {
    font-size: 13px;
    color: #b5563e;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s;
}

.more-details:hover {
    color: #9c4833;
}

/* Free Shipping */
.free-shipping {
    background: linear-gradient(135deg, #7a8c6e, #6b7d5e);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.free-shipping i {
    font-size: 18px;
}

/* Personalization */
.personalization-notice {
    margin-bottom: 20px;
}

.personalization-notice > p:first-child {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.required-field {
    color: #e74c3c;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.asterisk {
    color: #e74c3c;
}

.whatsapp-field {
    position: relative;
}

.whatsapp-field input {
    width: 100%;
    padding: 14px 50px 14px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.whatsapp-field input:focus {
    border-color: #b5563e;
}

.char-count {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #aaa;
}

/* Buy Actions */
.buy-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
    color: #b5563e;
    background: #f5efe6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    font-weight: 700;
}

.qty-btn:hover {
    background: #e8ddd0;
}

.qty-input {
    width: 50px;
    height: 44px;
    text-align: center;
    border: none;
    border-left: 2px solid #ddd;
    border-right: 2px solid #ddd;
    font-size: 16px;
    font-weight: 600;
    outline: none;
   
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.buy-btn {
    flex: 1;
    background: linear-gradient(135deg, #b5563e, #9c4833);
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(181, 86, 62, 0.35);
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(181, 86, 62, 0.45);
}

/* ========== TRUST SECTION ========== */
.trust-section {
    background: #f5efe6;
    padding: 40px 20px;
    text-align: center;
}

.trust-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    border: 2px solid #c9a96e;
    display: inline-block;
    padding: 8px 25px;
    border-radius: 25px;
}

.trust-title .highlight {
    color: #b5563e;
    font-weight: 800;
}

.trust-carousel {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    flex: 0 0 180px;
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: #5c3d2e;
    color: #fff;
    font-size: 28px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.trust-icon.purple {
    background: #7a8c6e;
}

.trust-item h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #3d2b1f;
}

.trust-item p {
    font-size: 13px;
    color: #777;
}

/* ========== DESCRIPTION SECTION ========== */
.description-section {
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.description-container {
    border-top: 3px solid #c9a96e;
    padding-top: 30px;
}

.section-label {
    font-size: 16px;
    font-weight: 700;
    color: #b5563e;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.desc-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #3d2b1f;
    margin-bottom: 20px;
    line-height: 1.2;
}

.description-section p {
    font-size: 15px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.desc-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    color: #5c3d2e;
    margin-top: 35px;
    margin-bottom: 15px;
}

.step {
    margin-bottom: 25px;
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: #b5563e;
    margin-bottom: 8px;
}

.product-specs {
    background: #f5efe6;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    border: 1px solid #e0d5c7;
}

.specs-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.product-specs ul {
    list-style: none;
}

.product-specs li {
    padding: 6px 0;
    font-size: 14px;
    color: #5c3d2e;
    border-bottom: 1px solid #e0d5c7;
}

.product-specs li:last-child {
    border-bottom: none;
}

/* ========== REVIEWS SECTION ========== */
.reviews-section {
    padding: 50px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.reviews-container {
    text-align: center;
}

.reviews-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #888;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    background: none;
}

.tab-btn.active {
    color: #3d2b1f;
    border-bottom: 2px solid #3d2b1f;
}

.tab-btn:hover {
    color: #3d2b1f;
}

.reviews-summary {
    margin-bottom: 10px;
}

.reviews-score {
    font-size: 48px;
    font-weight: 800;
    color: #3d2b1f;
    margin-right: 10px;
    vertical-align: middle;
}

.stars-big {
    display: inline-flex;
    gap: 4px;
    vertical-align: middle;
}

.stars-big i {
    color: #c9a96e;
    font-size: 22px;
}

.reviews-count {
    font-size: 14px;
    color: #888;
    margin-top: 6px;
}

.reviews-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #3d2b1f;
    margin: 20px 0 30px;
}

.reviews-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.write-review-btn {
    background: #3d2b1f;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.write-review-btn:hover {
    background: #5c3d2e;
}

.reviews-sort select {
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    color: #3d2b1f;
    background: #fff;
    cursor: pointer;
    outline: none;
}

.reviews-sort select:focus {
    border-color: #b5563e;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    text-align: left;
}

.review-card {
    border: 1px solid #e0d5c7;
    border-radius: 10px;
    padding: 22px;
    background: #fff;
    transition: box-shadow 0.3s;
}

.review-card:hover {
    box-shadow: 0 4px 18px rgba(61, 43, 31, 0.1);
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
}

.review-stars i {
    color: #c9a96e;
    font-size: 16px;
}

.review-text {
    font-size: 14px;
    color: #3d2b1f;
    line-height: 1.6;
    margin-bottom: 14px;
}

.review-author {
    font-size: 13px;
    color: #999;
}

/* Tab content visibility */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ========== QUESTIONS TAB ========== */
.questions-subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.question-card {
    border: 1px solid #e0d5c7;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s;
}

.question-card:hover {
    box-shadow: 0 4px 18px rgba(61, 43, 31, 0.1);
}

.question-q,
.question-a {
    display: flex;
    gap: 14px;
    padding: 18px 22px;
}

.question-q {
    border-bottom: 1px solid #f0e8de;
}

.question-q > i {
    color: #b5563e;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.question-a {
    background: #faf5ed;
}

.question-a > i {
    color: #7a8c6e;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.question-text,
.answer-text {
    font-size: 14px;
    color: #3d2b1f;
    line-height: 1.6;
    margin-bottom: 6px;
}

.answer-text {
    color: #5c3d2e;
}

.question-author,
.answer-author {
    font-size: 12px;
    color: #999;
}

.answer-author {
    color: #7a8c6e;
    font-weight: 600;
}

/* ========== REVIEW MODAL ========== */
.review-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(61, 43, 31, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.review-modal-overlay.active {
    display: flex;
}

.review-modal {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(61, 43, 31, 0.3);
    animation: modalIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 28px;
    color: #999;
    background: none;
    transition: color 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: #b5563e;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #3d2b1f;
    margin-bottom: 6px;
}

.modal-subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 28px;
}

.modal-field {
    margin-bottom: 20px;
    text-align: left;
}

.modal-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #3d2b1f;
    margin-bottom: 8px;
}

.modal-field input,
.modal-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0d5c7;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #3d2b1f;
    outline: none;
    transition: border-color 0.3s;
    background: #faf5ed;
}

.modal-field input:focus,
.modal-field textarea:focus {
    border-color: #b5563e;
}

.modal-field textarea {
    resize: vertical;
    min-height: 100px;
}

.star-rating {
    display: flex;
    gap: 6px;
}

.star-rating i {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s;
}

.star-rating i:hover,
.star-rating i.hovered {
    color: #c9a96e;
    transform: scale(1.15);
}

.star-rating i.selected {
    color: #c9a96e;
}

.modal-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #b5563e, #9c4833);
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(181, 86, 62, 0.3);
    margin-top: 5px;
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(181, 86, 62, 0.4);
}

/* ========== FOOTER ========== */

/* ========== INNER PAGES (Fale Conosco, Trocas, FAQ) ========== */
.page-section {
    padding: 50px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-container {
    border-top: 3px solid #c9a96e;
    padding-top: 30px;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #3d2b1f;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 15px;
    color: #888;
    margin-bottom: 35px;
}

/* Contact Grid (Fale Conosco) */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.contact-card {
    background: #fff;
    border: 1px solid #e0d5c7;
    border-radius: 12px;
    padding: 30px 22px;
    text-align: center;
    transition: box-shadow 0.3s;
}

.contact-card:hover {
    box-shadow: 0 4px 18px rgba(61, 43, 31, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    font-size: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.contact-icon.email-icon {
    background: #b5563e;
}

.contact-icon.social-icon {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #3d2b1f;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: #777;
    margin-bottom: 14px;
    line-height: 1.5;
}

.contact-link {
    font-size: 14px;
    font-weight: 600;
    color: #b5563e;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #9c4833;
}

.contact-info-box {
    background: #f5efe6;
    border: 1px solid #e0d5c7;
    border-radius: 12px;
    padding: 25px 30px;
    margin-top: 10px;
}

.contact-info-box h3 {
    font-size: 16px;
    font-weight: 700;
    color: #3d2b1f;
    margin-bottom: 10px;
}

.contact-info-box h3 i {
    color: #b5563e;
    margin-right: 8px;
}

.contact-info-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 4px;
}

/* Policy Cards (Trocas e Devoluções) */
.policy-card {
    background: #fff;
    border: 1px solid #e0d5c7;
    border-radius: 12px;
    padding: 28px 30px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s;
}

.policy-card:hover {
    box-shadow: 0 4px 18px rgba(61, 43, 31, 0.1);
}

.policy-icon {
    width: 50px;
    height: 50px;
    background: #5c3d2e;
    color: #fff;
    font-size: 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.policy-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #3d2b1f;
    margin-bottom: 12px;
}

.policy-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.policy-steps {
    list-style: none;
    padding: 0;
}

.policy-steps li {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    padding: 8px 0;
    border-bottom: 1px solid #f0e8de;
    display: flex;
    gap: 10px;
}

.policy-steps li:last-child {
    border-bottom: none;
}

.policy-steps li span {
    font-weight: 700;
    color: #b5563e;
    flex-shrink: 0;
}

.policy-list {
    list-style: none;
    padding: 0;
}

.policy-list li {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    padding: 6px 0 6px 20px;
    position: relative;
}

.policy-list li::before {
    content: '•';
    color: #b5563e;
    font-weight: 700;
    position: absolute;
    left: 0;
}

/* FAQ Accordion (Perguntas Frequentes) */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid #e0d5c7;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 18px rgba(61, 43, 31, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 600;
    color: #3d2b1f;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    gap: 12px;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #faf5ed;
}

.faq-question i {
    color: #b5563e;
    font-size: 14px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 22px 18px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.faq-answer a {
    color: #b5563e;
    font-weight: 600;
    text-decoration: underline;
}

.faq-answer a:hover {
    color: #9c4833;
}

/* Inner Pages Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 26px;
    }

    .policy-card {
        padding: 22px 20px;
    }
}

/* ========== FOOTER ========== */
.footer {
    background: #3d2b1f;
    color: #d4c4b5;
    padding: 40px 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 12px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #ccc;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #c9a96e;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #b5563e;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #888;
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 968px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-gallery {
        position: static;
    }

    .main-image img {
        max-height: 450px;
        object-fit: contain;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Header */
    .menu-toggle {
        display: block;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .header .search-bar {
        display: none;
    }

    .mobile-search {
        display: block;
    }

    .mobile-search .search-bar {
        display: flex;
    }

    .logo {
        font-size: 24px;
        flex: 1;
        text-align: center;
    }

    /* Product */
    .product-section {
        padding: 15px 12px;
    }

    .product-title {
        font-size: 18px;
    }

    .price-value {
        font-size: 28px;
    }

    .thumbnail-list {
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .thumbnail {
        flex-shrink: 0;
        width: 70px;
        height: 70px;
    }

    .buy-actions {
        flex-direction: row;
    }

    .buy-btn {
        font-size: 16px;
        padding: 14px 20px;
    }

    /* Trust */
    .trust-carousel {
        gap: 20px;
    }

    .trust-item {
        flex: 0 0 140px;
    }

    .trust-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        border-radius: 12px;
    }

    /* Description */
    .description-section {
        padding: 30px 16px;
    }

    .desc-title {
        font-size: 24px;
    }

    .desc-subtitle {
        font-size: 22px;
    }

    .step-title {
        font-size: 18px;
    }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-title {
        font-size: 26px;
    }

    .reviews-score {
        font-size: 36px;
    }

    .reviews-actions {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .question-q,
    .question-a {
        padding: 14px 16px;
        gap: 10px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .top-banner {
        font-size: 11px;
    }

    .logo {
        font-size: 20px;
    }

    .price-value {
        font-size: 24px;
    }

    .product-title {
        font-size: 16px;
    }

    .trust-title {
        font-size: 15px;
        padding: 6px 18px;
    }

    .desc-title {
        font-size: 20px;
    }
}
