* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
}

/* Faixa de mensagem no topo */
.top-banner {
    background-color: #e6af3b;
    color: #ffffff;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 14px;
    transition: all 0.3s ease;
}

.top-banner.hidden {
    display: none;
}

.top-banner-text {
    text-align: center;
    flex: 1;
}

.close-banner {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.close-banner:hover {
    opacity: 0.7;
}

/* Header principal */
.main-header {
    background-color: #000000;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(174, 18, 18, 0.05)55, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.icon-btn:hover {
    opacity: 0.7;
}

.icon-btn svg {
    width: 24px;
    height: 24px;
    stroke: #fdfdfd;
    fill: none;
    stroke-width: 2;
}

.logo {
    height: 80px;
    width: auto;
}

.cart-wrapper {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #e6af3b;
    color: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

/* Seção do produto */
.product-section {
    background-color: #ffffff;
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.promotion-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #e6af3b;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Estilos do Carrossel Principal */
.product-carousel-main {
    position: relative;
    margin-bottom: 15px;
}

.product-carousel-main .slick-slide {
    outline: none;
}

.product-carousel-main .slick-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Customização das setas do carrossel principal */
.product-carousel-main .slick-prev,
.product-carousel-main .slick-next {
    width: 40px;
    height: 40px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.product-carousel-main .slick-prev:hover,
.product-carousel-main .slick-next:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.product-carousel-main .slick-prev {
    left: 10px;
}

.product-carousel-main .slick-next {
    right: 10px;
}

.product-carousel-main .slick-prev:before,
.product-carousel-main .slick-next:before {
    color: #2c1810;
    font-size: 24px;
    opacity: 1;
}

/* Estilos do Carrossel de Thumbs */
.product-carousel-thumbs {
    margin-top: 15px;
}

.product-carousel-thumbs .slick-slide {
    padding: 0 5px;
    cursor: pointer;
    outline: none;
}

.product-carousel-thumbs .slick-slide img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.product-carousel-thumbs .slick-slide:hover img {
    opacity: 0.8;
}

.product-carousel-thumbs .slick-slide.slick-current img {
    border-color: #e6af3b;
    opacity: 1;
}

.product-thumb {
    width: 100%;
    height: auto;
    display: block;
}

/* Seção de Detalhes do Produto */
.product-details {
    background-color: #ffffff;
    padding: 30px 20px;
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-details-container {
    max-width: 800px;
}

.product-title {
    font-size: 20px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Avaliações e Vendas */
.product-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.rating-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ddd;
    font-size: 18px;
}

.star.filled {
    color: #e6af3b;
}

.reviews-count {
    color: #e6af3b;
    font-size: 14px;
}

.sales-info {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #000000;
}

.fire-icon {
    flex-shrink: 0;
}

/* Informações do Produto */
.product-info {
    margin: 15px 0;
    padding: 12px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-label {
    font-weight: 600;
    color: #000000;
}

.info-value {
    color: #000000;
}

.store-link {
    color: #e6af3b;
    text-decoration: none;
    transition: opacity 0.2s;
}

.store-link:hover {
    opacity: 0.7;
}

.info-null {
    color: #999;
    font-size: 13px;
}

/* Status de Estoque */
.stock-status {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    margin: 15px 0;
}

/* Texto Promocional */
.promo-text {
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 6px;
    font-size: 13px;
    color: #000000;
    line-height: 1.6;
    margin: 15px 0;
}

/* Seção de Preços */
.pricing-section {
    margin: 20px 0;
}

.price-label {
    font-size: 14px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 10px;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.price-old {
    font-size: 24px;
    color: hsl(355, 96%, 56%);
    text-decoration: line-through;
    font-weight: 600;
}

.price-current {
    font-size: 32px;
    color: #0ea64d;
    font-weight: 700;
}

.installment {
    font-size: 14px;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.tipos-label {
    font-size: 12px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Tags de Variações */
.product-variations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.variation-tag {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background-color: #ffffff;
    color: #000000;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.variation-tag:hover {
    border-color: #e6af3b;
    background-color: #f8f5ff;
}

.variation-tag.active {
    border: 2px solid #2c1810;
    background-color: #ffffff;
    color: #2c1810;
    font-weight: 600;
}

/* Seletor de Quantidade */
.quantity-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.quantity-label {
    font-size: 14px;
    font-weight: 600;
    color: #4a4a4a;
}

.quantity-select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #ffffff;
    font-size: 14px;
    color: #4a4a4a;
    cursor: pointer;
    transition: border-color 0.2s;
    min-width: 150px;
}

.quantity-select:hover {
    border-color: #0ea64d;
}

.quantity-select:focus {
    outline: none;
    border-color: #0ea64d;
}

/* Botão Adicionar ao Carrinho */
.add-to-cart-btn {
    width: 100%;
    padding: 16px 24px;
    background-color: #0ea64d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 25px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart-btn:hover {
    background-color: #0ea64d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

/* Seção de Compartilhamento */
.share-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.share-label {
    font-size: 14px;
    color: #4a4a4a;
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    background-color: #f0f0f0;
    color: #5a5a5a;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.share-btn.facebook:hover {
    background-color: #1877f2;
    color: white;
}

.share-btn.twitter:hover {
    background-color: #1da1f2;
    color: white;
}

.share-btn.whatsapp:hover {
    background-color: #25d366;
    color: white;
}

.share-btn.pinterest:hover {
    background-color: #e60023;
    color: white;
}

/* Seção de Descrição Expansível */
.product-description-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e8e8e8;
}

.section-title {
    font-size: 18px;
    color: #2c2c2c;
    font-weight: 700;
    margin-bottom: 20px;
}

.description-wrapper {
    position: relative;
}

.description-content {
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    position: relative;
}

.description-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, white);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.description-content.expanded {
    max-height: none;
}

.description-content.expanded::after {
    opacity: 0;
}

.description-content p {
    margin-bottom: 15px;
    color: #4a4a4a;
    font-size: 14px;
    line-height: 1.8;
}

.description-content ul {
    margin: 15px 0 15px 20px;
}

.description-content li {
    margin-bottom: 8px;
    color: #4a4a4a;
    font-size: 14px;
    line-height: 1.6;
}

.description-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    background: none;
    border: none;
    color: #e6af3b;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.description-toggle:hover {
    opacity: 0.7;
}

.description-toggle .toggle-icon {
    stroke: #e6af3b;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s;
}

.description-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

.description-toggle.active .toggle-text::after {
    content: ' menos';
}

.description-toggle .toggle-text::after {
    content: '';
}

/* Seção de Avaliações */
.reviews-section {
    margin-top: 30px;
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.overall-rating {
    display: flex;
    gap: 40px;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 25px;
}

.rating-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c2c2c;
}

.rating-stars-large {
    display: flex;
    gap: 4px;
}

.star-large {
    font-size: 24px;
    color: #ddd;
}

.star-large.filled {
    color: #e6af3b;
}

.rating-count {
    color: #999;
    font-size: 14px;
}

.rating-breakdown {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.bar-label {
    width: 40px;
    color: #4a4a4a;
    font-weight: 500;
}

.rating-bar-bg {
    flex: 1;
    height: 8px;
    background-color: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background-color: #e6af3b;
    transition: width 0.3s ease;
}

.bar-count {
    width: 30px;
    text-align: right;
    color: #999;
}

/* Filtros de Avaliações */
.reviews-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    background-color: #ffffff;
    color: #5a5a5a;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: #e6af3b;
    color: #e6af3b;
    background-color: #f8f5ff;
}

.filter-btn.active {
    border-color: #e6af3b;
    background-color: #e6af3b;
    color: #ffffff;
    font-weight: 600;
}

/* Lista de Avaliações */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    padding: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    transition: box-shadow 0.2s;
}

.review-item:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e6af3b;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.reviewer-name {
    font-weight: 600;
    color: #2c2c2c;
    font-size: 14px;
}

.review-date {
    font-size: 12px;
    color: #999;
}

.review-verified {
    font-size: 12px;
    color: #0ea64d;
    font-weight: 600;
}

.review-verified::before {
    content: '✓ ';
    font-weight: bold;
    color: #999;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}

.review-star {
    font-size: 16px;
    color: #ddd;
}

.review-star.filled {
    color: #e6af3b;
}

.review-title {
    font-weight: 600;
    color: #2c2c2c;
    font-size: 14px;
    margin: 0 0 5px 0;
}

.review-text {
    color: #4a4a4a;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.review-image {
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
    max-width: 100%;
}

.review-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

.review-image img:hover {
    transform: scale(1.02);
}

.review-actions {
    display: flex;
    gap: 15px;
}

.review-action-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.2s;
    color: #5a5a5a;
    font-size: 13px;
}

.review-action-btn:hover {
    border-color: #e6af3b;
    color: #e6af3b;
    background-color: #f8f5ff;
}

.review-action-btn svg {
    flex-shrink: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-container {
        gap: 10px;
    }

    .header-left,
    .header-right {
        gap: 10px;
    }

    .logo {
        height: 60px;
    }

    .top-banner-text {
        font-size: 12px;
        padding-right: 30px;
    }

    .product-title {
        font-size: 18px;
    }

    .price-old {
        font-size: 20px;
    }

    .price-current {
        font-size: 28px;
    }

    .product-details {
        padding: 20px 15px;
    }

    .share-section {
        flex-wrap: wrap;
    }

    .section-title {
        font-size: 16px;
    }

    .overall-rating {
        flex-wrap: wrap;
    }

    .rating-number {
        font-size: 28px;
    }

    .reviews-filters {
        flex-direction: column;
    }

    .reviews-section {
        padding: 20px 15px;
    }

    /* Ajustes no carrossel para mobile */
    .product-carousel-main .slick-prev,
    .product-carousel-main .slick-next {
        width: 32px;
        height: 32px;
    }

    .product-carousel-main .slick-prev:before,
    .product-carousel-main .slick-next:before {
        font-size: 20px;
    }

    .product-carousel-thumbs .slick-slide {
        padding: 0 3px;
    }
}

/* Rodapé */
.site-footer {
    background-color: #e6af3b;
    padding: 40px 20px;
    margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Acordeão */
.footer-accordion {
    margin-bottom: 30px;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.accordion-header:hover {
    opacity: 0.8;
}

.accordion-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.accordion-icon {
    color: #ffffff;
    transition: transform 0.3s;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-content.expanded {
    max-height: 500px;
    padding-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.contact-info {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.8;
    margin-top: 10px;
}

.contact-info p {
    margin: 8px 0;
}

/* Newsletter */
.newsletter-section {
    margin: 30px 0;
    text-align: center;
}

.newsletter-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.newsletter-text {
    color: #ffffff;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    color: #4a4a4a;
}

.newsletter-input:focus {
    outline: none;
    border-color: #ffffff;
    background-color: #ffffff;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-btn {
    padding: 12px 30px;
    background-color: #ffffff;
    color: #e6af3b;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Informações de Copyright */
.footer-info {
    text-align: center;
    margin: 30px 0 20px 0;
}

.copyright-text {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.6;
}

/* Bandeiras de Pagamento */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.payment-card {
    width: 50px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* Selos de Segurança */
.security-seals {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.seal-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.seal-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.seal-text {
    color: #ffffff;
    font-size: 10px;
    text-align: center;
    line-height: 1.3;
    font-weight: 600;
}

.security-text {
    text-align: center;
    color: #ffffff;
    font-size: 13px;
    margin-top: 15px;
    font-weight: 500;
}

/* Responsividade Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 30px 15px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .payment-methods {
        gap: 8px;
    }

    .payment-card {
        width: 45px;
        height: 28px;
    }

    .security-seals {
        gap: 15px;
    }

    .seal-badge {
        width: 40px;
        height: 40px;
    }

    .copyright-text {
        font-size: 11px;
    }
}

/* Rodapé Fixo */
.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    box-shadow: 0 -2px 10px rgba(61, 59, 59, 0.15);
    padding: 12px 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.fixed-footer.visible {
    transform: translateY(0);
}

.fixed-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    align-items: center;
}

.fixed-footer-select {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #ffffff;
    font-size: 14px;
    color: #4a4a4a;
    cursor: pointer;
}

.fixed-footer-select:focus {
    outline: none;
    border-color: #27ae60;
}

.fixed-footer-btn {
    padding: 12px 30px;
    background-color: #0ea64d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.fixed-footer-btn:hover {
    background-color: #0ea64d;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
}

@media (max-width: 768px) {
    .fixed-footer {
        padding: 10px 15px;
    }

    .fixed-footer-select {
        font-size: 12px;
        padding: 10px 12px;
    }

    .fixed-footer-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}