/* Basic Reset & General Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.header__topbar_wrapper {
    background-color: #e3e4e6;
    /* bg-light-gray */
    font-size: 0.875rem;
    padding: 8px 0;
}

.header__topbar_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__topbar_item {
    flex: 1;
    text-align: center;
}

.header__topbar_item p {
    margin: 0;
}

.header__topbar_item span b {
    font-weight: bold;
}

.header__menu {
    background-color: #fff;
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
}

.header__menu_content {
    display: flex;
    align-items: center;
    max-width: 1320px;
    /* Similar to mw9 and HorizontalHeader max-width */
    margin: 0 auto;
    padding: 0 32px;
    /* Similar to HorizontalHeader padding */
}

.polishop-io-header-0-x-HorizontalHeaderWrapper {
    width: 100%;
}

.polishop-io-header-0-x-HorizontalHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Simplified for main groups */
    height: 40px;
}

.polishop-io-header-0-x-HorizontalHeaderDivFirst {
    display: flex;
    align-items: center;
}

.menu-button-container {
    margin-right: 20px;
    /* Adjusted from original (68px was too much without other elements) */
}

.polishop-io-header-0-x-HamburguerIcon {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 5px;
}

.polishop-io-header-0-x-HamburguerIcon span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #3f3f40;
    margin: 7px auto;
    border-radius: 100px;
}

.polishop-io-header-0-x-HorizontalHeaderLogo img {
    display: block;
    /* Ensure it behaves well in flex */
}

.polishop-io-header-0-x-HorizontalHeaderItemSearch {
    flex-grow: 1;
    padding: 0 20px;
    /* Simplified spacing */
    max-width: 720px;
    margin: 0 auto;
    /* Center search bar if space allows */
}

.search-bar-container {
    display: flex;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    /* To keep button inside */
}

.search-input {
    flex-grow: 1;
    border: none;
    padding: 10px;
    font-size: 1rem;
    outline: none;
}

.search-submit-button {
    background-color: #ffd500;
    /* yellow */
    border: none;
    padding: 0 15px;
    cursor: pointer;
}

.search-icon {
    fill: #333;
}

.polishop-io-header-0-x-HorizontalHeaderDivThird {
    display: flex;
    align-items: center;
}

.polishop-io-header-0-x-HorizontalHeaderItem {
    margin-left: 15px;
    /* Spacing between icons */
}

.polishop-io-header-0-x-NavItemProfileIcon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.polishop-io-header-0-x-LoginOverlayTrigger,
.minicart-button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.polishop-io-header-0-x-HorizontalHeaderItemCart svg {
    fill: #585858;
}


/* Breadcrumb */
.breadcrumb-container {
    padding: 15px 0;
    font-size: 0.875rem;
}

.breadcrumb-content {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    color: #727273;
    /* c-muted-2 */
    text-decoration: none;
    padding: 0 5px;
}

.breadcrumb-link:hover {
    color: #00726f;
    /* c-action-primary */
}

.breadcrumb-home-link svg {
    vertical-align: middle;
    fill: #3F3F40;
}

.breadcrumb-arrow {
    color: #727273;
    padding: 0 5px;
}

.breadcrumb-arrow svg {
    vertical-align: middle;
    fill: currentColor;
}


/* Product Main Section */
.product-main-section {
    padding: 20px 0;
}

.product-main-content {
    display: flex;
    gap: 30px;
}

/* Product Images Column */
.product-images-column {
    flex: 0 0 60%;
    /* ~60% width */
    max-width: 60%;
}

.product-images-gallery {
    display: flex;
    position: relative;
}

.thumbnails-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-right: 15px;
    max-height: 500px;
    /* Or adjust based on main image height */
    overflow-y: auto;
}

.thumbnail-image {
    width: 90px;
    height: 90px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid #e3e4e6;
    border-radius: 4px;
}

.thumbnail-image.active {
    border-color: #008682;
    /* actionColor */
    box-shadow: 0 0 0 2px #008682;
}

.video-thumbnail {
    position: relative;
}

.video-thumbnail::after {
    /* Play icon overlay for video thumb */
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-container {
    flex-grow: 1;
    position: relative;
    border: 1px solid #e3e4e6;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px; /* Garante altura mínima */
    overflow: hidden; /* Esconde o que vazar do iframe */
}

.main-product-image {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.video-player-container {
    position: absolute; /* Permite que o iframe seja posicionado dentro */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.video-player-container iframe {
    /* TÉCNICA DE CENTRALIZAÇÃO COM ZOOM */
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.modal-open-trigger {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
    cursor: pointer;
    z-index: 10;
}

.modal-open-trigger svg {
    width: 16px;
    height: 16px;
    fill: #333;
}


/* Product Details Column */
.product-details-column {
    flex: 0 0 40%;
    max-width: 40%;
    padding-left: 20px;
}

.product-ref {
    font-size: 0.875rem;
    color: #727273;
    text-align: center;
    margin-bottom: 10px;
}

.product-name {
    font-size: 1.25rem;
    /* f5 */
    font-weight: 700;
    /* fw7 */
    color: #353535;
    margin-bottom: 10px;
}

.product-rating {
    margin-bottom: 10px;
    font-size: 0.875rem;
}

.product-rating span {
    color: #ffd700;
}

/* Gold for stars */
.product-seller {
    font-size: 0.875rem;
    background: rgba(0, 0, 0, .03);
    padding: 8px 12px;
    border-radius: 4px;
    margin: 10px 0;
}

.product-price-container {
    margin-bottom: 15px;
}

.list-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.875rem;
    position: relative;
}

.discount-badge {
    position: absolute;
    top: -5px;
    right: 0;
    background-color: #e4e6e8;
    color: rgba(63, 63, 64, .7);
    padding: 4px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.discount-badge svg {
    vertical-align: middle;
    margin-left: 2px;
}

.selling-price {
    font-size: 1.5rem;
    /* f3 */
    font-weight: bold;
    color: #008682;
    /* actionColor */
    margin: 5px 0;
}

.pix-discount {
    font-size: 0.875rem;
    color: #5c5c5c;
    margin-left: 5px;
}

.installments {
    font-size: 0.875rem;
    color: #3f3f40;
}

.installments strong {
    color: #008682;
}

.payment-options-link {
    font-size: 0.75rem;
    color: #008682;
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 0;
    display: block;
}

.product-actions button {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border: 1px solid transparent;
}

.buy-now-button {
    background-color: #008682;
    /* action-primary */
    color: white;
}

.add-to-cart-button {
    background-color: #fff;
    color: #008682;
    border-color: #008682;
}

.product-badges-container {
    margin-top: 10px;
}

.polishop-badge {
    display: inline-block;
    background-color: #494949;
    /* approx gold/dark yellow */
    color: white;
    padding: 5px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
}

.shipping-calculator {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e3e4e6;
}

.shipping-calculator h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.shipping-input-group {
    display: flex;
    margin-bottom: 5px;
}

.shipping-input-group input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
}

.shipping-input-group button {
    background-color: #008682;
    border: none;
    padding: 10px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.shipping-input-group button svg {
    fill: white;
}

.cep-link {
    font-size: 0.75rem;
    color: #008682;
    text-decoration: none;
}

/* Collapsible Sections */
.collapsible-section {
    margin: 20px 0;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.collapsible-trigger {
    background: none;
    border: none;
    font-size: 1.25rem;
    font-weight: bold;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.collapsible-trigger svg {
    fill: #333;
    transition: transform 0.3s ease;
}

.collapsible-trigger.active svg {
    transform: rotate(180deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding-left: 10px;
    /* Indent content */
}

.collapsible-content.open {
    max-height: 1500px;
    /* Adjust if content is very long */
}

.product-video-description img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    display: block;
}

.video-placeholder {
    position: relative;
    cursor: pointer;
    display: inline-block;
    /* Or block with margin auto for centering */
}

.video-placeholder::after {
    /* Play icon for video placeholder */
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 5px black;
}

.specifications-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.specifications-table th,
.specifications-table td {
    border: 1px solid #e0e0e0;
    padding: 8px;
    text-align: left;
}

.specifications-table th {
    background-color: #f7f7f7;
}

/* Reviews */
.reviews-summary {
    text-align: center;
    margin-bottom: 20px;
}

.reviews-summary strong {
    font-size: 1.5rem;
}

.review-card {
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.review-card p:first-child {
    font-weight: bold;
    margin-bottom: 5px;
}

.review-card small {
    color: #777;
    font-size: 0.8em;
}

/* Related Products */
.related-products-section {
    padding: 30px 0;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    color: #585959;
    /* dark-gray */
    font-weight: 300;
    /* fw3 */
    margin-bottom: 20px;
}

.shelf {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    /* For horizontal scrolling on small screens if needed */
    padding-bottom: 15px;
    /* Space for scrollbar if it appears */
}

.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 15px;
    text-align: center;
    min-width: 220px;
    /* Adjust as needed */
    flex: 0 0 auto;
    /* Prevent shrinking, allow natural width */
}

.product-card a {
    text-decoration: none;
    color: inherit;
}

.product-card img {
    max-width: 100%;
    height: 180px;
    /* Fixed height for consistency */
    object-fit: contain;
    margin-bottom: 10px;
}

.product-card-name {
    font-size: 0.9rem;
    min-height: 3em;
    /* To align buttons */
    margin-bottom: 5px;
}

.product-card-list-price {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: #999;
}

.product-card-price {
    font-size: 1.1rem;
    color: #008682;
    margin: 5px 0;
}

.product-card-installments {
    font-size: 0.8rem;
    color: #5c5c5c;
}

.product-card-buy-button {
    background-color: #008682;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #f0f0f0;
    padding: 30px 0;
    font-size: 0.875rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-column {
    flex: 1;
    min-width: 180px;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.footer-column a {
    display: block;
    color: #555;
    text-decoration: none;
    margin-bottom: 5px;
}

.footer-column a:hover {
    text-decoration: underline;
}

.social-icons img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 0.8rem;
    color: #777;
}

/* Bottom Bar */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
    z-index: 1000;
}

.bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.bar-product-name {
    font-size: 0.9rem;
    font-weight: bold;
    flex-grow: 1;
    margin-right: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bar-price-wrapper {
    text-align: right;
    margin-right: 15px;
}

.bar-list-price {
    font-size: 0.75rem;
    text-decoration: line-through;
    color: #999;
    margin: 0;
}

.bar-selling-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #008682;
    margin: 0;
}

.bar-installments {
    font-size: 0.75rem;
    color: #3f3f40;
    margin: 0;
}

.bar-buy-button {
    background-color: #008682;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
}

/* Modal Styles */
.overlay {
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    /* Vertical centering */
    justify-content: center;
    /* Horizontal centering */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 1000;
    padding: 1.2rem;
}

.modal {
    max-width: 90vw;
    /* Responsive max-width */
    max-height: 90vh;
    /* Responsive max-height */
    position: relative;
    background: #ffffff;
    box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.25);
    margin: auto;
    /* Ensures centering if align/justify doesn't cover it */
    display: flex;
    /* To allow image to scale */
    align-items: center;
    justify-content: center;
}

.modal img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-close-button {
    position: absolute;
    top: 14px;
    right: 14px;
    border: none;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    cursor: pointer;
    border-radius: 50%;
}

.modal-close-button svg {
    width: 16px;
    height: 16px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header__topbar_item:last-child {
        display: none;
    }

    /* Hide "Seja um Franqueado" on small screens */
    .header__menu_content {
        padding: 0 15px;
    }

    .polishop-io-header-0-x-HorizontalHeaderItemSearch {
        display: none;
    }

    /* Hide search in main bar, assume it's in mobile menu */
    .menu-button-container {
        margin-right: 10px;
    }

    .polishop-io-header-0-x-HorizontalHeaderLogo img {
        height: 30px;
    }

    .product-main-content {
        flex-direction: column;
    }

    .product-images-column,
    .product-details-column {
        flex: 1 1 100%;
        max-width: 100%;
        padding-left: 0;
    }

    .product-images-gallery {
        flex-direction: column-reverse;
        /* Thumbs below main image */
    }

    .thumbnails-container {
        flex-direction: row;
        overflow-x: auto;
        margin-right: 0;
        margin-top: 10px;
        max-height: auto;
    }

    .thumbnail-image {
        min-width: 70px;
        /* Ensure they don't get too small */
        margin-right: 5px;
    }

    .modal-open-trigger {
        display: none;
    }

    /* Often hidden on mobile, or handled differently */

    .shelf {
        flex-wrap: nowrap;
        /* Ensure horizontal scroll */
    }

    .product-card {
        min-width: 180px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 20px;
    }

    .social-icons {
        justify-content: center;
        display: flex;
    }

    .bar-product-name {
        font-size: 0.8rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 120px;
        /* Adjust as needed */
    }

    .bar-price-wrapper {
        display: none;
        /* Hide price on very small screens or simplify */
    }

    .bar-buy-button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* WhatsApp Modal Styles */
.whatsapp-modal-overlay {
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    /* Above everything else */
    padding: 1rem;
}

.whatsapp-modal {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
}

.whatsapp-modal h2 {
    margin-bottom: 0.5rem;
    color: #333;
}

.whatsapp-modal p {
    margin-bottom: 1.5rem;
    color: #555;
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.modal-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-input-group input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.modal-button {
    background-color: #25D366;
    /* WhatsApp green */
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.modal-button:hover {
    background-color: #128C7E;
}

.error-message {
    color: #d9534f;
    /* Bootstrap's danger color */
    font-size: 0.875rem;
    margin-top: 5px;
    margin-bottom: 0 !important;
    /* Override default p margin */
}

.coupon-box {
    border: 2px dashed #008682;
    padding: 1rem;
    margin: 1rem auto;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #f7f7f7;
    display: inline-block;
}

#copyCouponBtn {
    background-color: #008682;
    /* Polishop Green */
}

#copyCouponBtn:hover {
    background-color: #005f5c;
}

@media (max-width: 768px) {
    .whatsapp-modal {
        padding: 1.5rem;
    }

    .whatsapp-modal h2 {
        font-size: 1.25rem;
    }
}


.related-products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.related-product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.related-product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.related-product-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.related-product-price {
    margin-bottom: 15px;
}

.related-old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    display: block;
    margin-bottom: 5px;
}

.related-new-price {
    font-size: 18px;
    font-weight: bold;
    color: #CB0F09;
}

.related-product-btn {
    background: #CB0F09;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
    width: 100%;
}

.related-product-btn:hover {
    background: #a00d08;
}



/* Checkout Page Styles */
.checkout-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.checkout-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.checkout-step {
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.step-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #CB0F09;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 18px;
    color: #CB0F09;
    font-weight: bold;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.quantity-btn:hover {
    background: #e9ecef;
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
}

.cart-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-row.total {
    font-size: 20px;
    font-weight: bold;
    color: #CB0F09;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.payment-method:hover {
    border-color: #CB0F09;
}

.payment-method.selected {
    border-color: #CB0F09;
    background: #fff5f5;
}

.payment-method.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-method input[type="radio"] {
    margin: 0;
}

.payment-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.payment-info {
    flex: 1;
}

.payment-title {
    font-weight: bold;
    color: #333;
}

.payment-description {
    font-size: 14px;
    color: #666;
}

.checkout-btn {
    width: 100%;
    background: #CB0F09;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
}

.checkout-btn:hover {
    background: #a00d08;
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.pix-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.pix-qr {
    width: 200px;
    height: 200px;
    margin: 20px auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pix-code {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    font-family: monospace;
    word-break: break-all;
    margin: 10px 0;
}

.copy-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.copy-btn:hover {
    background: #20b358;
}
