@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

    html, body {
        height: 100%;
        min-height: 100vh;
        margin: 0;
        padding: 0;
    }
    
    body {
        background: #0D1117 !important;
        font-family: "Inter", Arial, sans-serif;
        color: #FFF;
    }



body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

main {
    flex: 1 0 auto;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1C2526;
}

::-webkit-scrollbar-thumb {
    background: #F6C107;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #D4A406;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #111318;
    border-bottom: 1px solid #1C2526;
    padding: 3px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo {
    height: 40px;
    display: block;
}

/* Menu Toggle Button */
.menu-toggle {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #ffffff;
    border-right: 1px solid #2A3439;
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 1002;
    overflow-y: auto;
}

.sidebar.open {
    left: 0;
}

.sidebar-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FF5959;
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.sidebar-logo {
    width: 100px;
    height: auto;
}

.sidebar-info {
    font-size: 14px;
    color: #A0AEC0;
    text-align: center;
    line-height: 1.5;
}

.sidebar-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.sidebar-button {
    display: block;
    padding: 12px;
    background: #F6C107;
    color: #0A0F2B;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.sidebar-button:hover {
    background: #D4A406;
    transform: translateY(-2px);
}

/* Footer */
footer {
    flex-shrink: 0;
    background: #1C2526;
    color: #A0AEC0;
    padding: 40px 20px;
    width: 100%;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #F6C107;
}

.footer-content p.description {
    font-size: 14px;
    color: #A0AEC0;
    max-width: 600px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 13px;
    color: #A0AEC0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #F6C107;
}

.footer-social {
    margin: 10px 0;
}

.footer-social p {
    font-size: 14px;
    color: #A0AEC0;
    margin-bottom: 10px;
}

.footer-social a {
    margin: 0 10px;
    color: #A0AEC0;
    font-size: 20px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #F6C107;
}

.footer-content p.copyright {
    font-size: 13px;
    color: #A0AEC0;
    margin-top: 20px;
}

/* Banner Carousel */
.banner-carousel {
    position: relative;
    max-width: 1200px;
    margin: 80px auto 20px;
    padding: 0 20px;
    overflow: hidden;
}

.banner-placeholder {
    max-width: 1200px;
    margin: 60px auto 10px;
    padding: 0 20px;
    height: 20px;
}

.banner-slides {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}

.banner-slide {
    flex: 0 0 100%;
    display: none;
}

.banner-slide.active {
    display: block;
}

.banner-slide img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.banner-link {
    display: block;
    text-decoration: none !important;
    color: inherit !important;
}

.banner-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 4px;
}

.banner-control.prev {
    left: 20px;
}

.banner-control.next {
    right: 20px;
}

.banner-play-pause {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
}

.banner-control:hover,
.banner-play-pause:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Search Bar */
.search-container {
    display: block !important;
    max-width: 600px;
    margin: 20px auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    min-height: 40px;
}

.search-container form {
    display: flex;
    align-items: center;
    background: #1C2526;
    border-radius: 8px;
    padding: 8px 12px;
}

.search-container input {
    flex: 1;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 14px;
    outline: none;
}

.search-container svg {
    width: 18px;
    height: 18px;
    fill: #A0AEC0;
    margin-left: 8px;
}

.search-container input:focus + svg {
    fill: #F6C107;
}

/* Product Grid */
.product-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    padding: 20px;
}

.product-card {
    background: #1C2526;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    animation: slideUp 0.5s ease forwards;
    animation-delay: calc(var(--index) * 0.1s);
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-container {
    position: relative;
    width: 100%;
}

.product-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.product-info {
    padding: 8px;
    text-align: center;
    flex-grow: 1;
    margin-bottom: 8px;
}

.product-info h3 {
    font-size: 15px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.previous-price-container {
    display: flex;
    align-items: center;
    gap: 6px;
}

.previous-price {
    font-size: 13px;
    color: #A0AEC0;
    text-decoration: line-through;
}

.discount {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #22C55E;
    font-weight: 600;
}

.discount-icon {
    width: 12px;
    height: 12px;
    fill: #22C55E;
}

.current-price {
    font-size: 16px;
    color: #F6C107;
    font-weight: 600;
}

.pix-text {
    font-size: 12px;
    color: #A0AEC0;
}

/* Product Actions */
.product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: #1C2526;
}

.product-actions button {
    width: 100%;
    padding: 8px;
    background: #F6C107;
    color: #0A0F2B;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.product-actions button:hover {
    background: #D4A406;
}

.product-actions button:active {
    transform: scale(0.95);
}

.product-cart-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #FFFFFF20;
    padding: 6px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 18px;
    z-index: 15;
}

.product-cart-icon:hover {
    background: #F6C107;
}

/* Cart Icon */
.cart-icon {
    position: fixed;
    top: 12px;
    right: 20px;
    background: #F6C107;
    color: #0A0F2B;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-icon span {
    position: absolute;
    top: -5px;
    font-family: 'Inter', sans-serif;
    right: -5px;
    background: #FF5959;
    color: #FFFFFF;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: 500;
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: #111318;
    border-left: 1px solid #1C2526;
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 1002;
    overflow-y: auto;
}

.cart-modal.open {
    right: 0;
}

.cart-modal h2 {
    font-size: 16px;
    color: #F6C107;
    margin-bottom: 16px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #1C2526;
}

.cart-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 10px;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.cart-item-info h3 {
    font-size: 13px;
    color: #FFFFFF;
}

.cart-item-info p {
    font-size: 12px;
    color: #F6C107;
    align-self: flex-start;
}

.cart-item button {
    background: #FF5959;
    color: #FFFFFF;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    align-self: center;
    margin-left: 10px;
}

.cart-item button:hover {
    background: #E04E4E;
}

.cart-total {
    margin: 12px 0;
    font-size: 14px;
    color: #F6C107;
}

.cart-modal button.checkout {
    width: 100%;
    padding: 10px;
    background: #F6C107;
    color: #0A0F2B;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.cart-modal button.checkout:hover {
    background: #D4A406;
}

.cart-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FF5959;
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Quantity Controls */
.quantity-control {
    display: flex;
    align-items: center;
    gap: 6px;
}

.quantity-control button {
    background: #F6C107;
    color: #0A0F2B;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
}

.quantity-control input {
    width: 40px;
    text-align: center;
    background: #1C2526;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    padding: 4px;
    font-size: 12px;
}

/* Product Details (product.php) */
.product-details {
    max-width: 800px;
    margin: 80px auto;
    background: #1C2526;
    padding: 20px;
    border-radius: 8px;
    animation: slideUp 0.5s ease;
    display: flex;
    gap: 20px;
}

.product-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.product-info-details {
    flex: 1;
}

.product-info-details h2 {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.product-info-details .price-container {
    margin-bottom: 12px;
}

.product-info-details p.description {
    font-size: 14px;
    color: #A0AEC0;
    margin-bottom: 16px;
}

.product-info-details button {
    width: 100%;
    padding: 10px;
    background: #F6C107;
    color: #0A0F2B;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.product-info-details button:hover {
    background: #D4A406;
}

/* Cart Page (cart.php) */
.cart-page {
    max-width: 900px;
    margin: 80px auto 20px;
    background: #1C2526;
    padding: 20px;
    border-radius: 8px;
}

.cart-page h2 {
    font-size: 16px;
    color: #F6C107;
    margin-bottom: 16px;
}

.cart-page .cart-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #2A3439;
}

.cart-page .cart-total {
    font-size: 16px;
    color: #F6C107;
    margin: 16px 0;
}

.cart-page button.checkout {
    width: 100%;
    padding: 10px;
    background: #F6C107;
    color: #0A0F2B;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

.cart-page button.checkout:hover {
    background: #D4A406;
}

/* Last Orders Page (last_orders.php) */
.last-orders-page {
    max-width: 800px;
    margin: 80px auto 20px;
    background: #1C2526;
    padding: 20px;
    border-radius: 8px;
}

.last-orders-page h2 {
    font-size: 18px;
    color: #F6C107;
    margin-bottom: 20px;
    text-align: center;
}

#client-info {
    margin-bottom: 20px;
    text-align: center;
}

#client-info p {
    font-size: 14px;
    color: #A0AEC0;
}

#client-info button {
    padding: 8px 16px;
    background: #F6C107;
    color: #0A0F2B;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.order-item {
    padding: 15px;
    border-bottom: 1px solid #2A3439;
}

.order-item h3 {
    font-size: 16px;
    color: #FFFFFF;
}

.order-item p {
    font-size: 14px;
    color: #A0AEC0;
    margin: 5px 0;
}

.order-item p strong {
    color: #FFFFFF;
}

.payment-link {
    display: inline-block;
    padding: 8px 16px;
    background: #F6C107;
    color: #0A0F2B;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 10px;
}

.payment-link:hover {
    background: #D4A406;
}

/* Track Order Page (track_order.php) */
.track-order-page {
    max-width: 800px;
    margin: 80px auto 20px;
    background: #1C2526;
    padding: 20px;
    border-radius: 8px;
}

.track-order-page h2 {
    font-size: 18px;
    color: #F6C107;
    margin-bottom: 20px;
    text-align: center;
}

#client-info {
    margin-bottom: 20px;
    text-align: center;
}

#client-info p {
    font-size: 14px;
    color: #A0AEC0;
}

#client-info button {
    padding: 8px 16px;
    background: #F6C107;
    color: #0A0F2B;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.order-status {
    padding: 15px;
    border: 1px solid #2A3439;
    border-radius: 6px;
}

.order-status h3 {
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.order-status p {
    font-size: 14px;
    color: #A0AEC0;
    margin: 5px 0;
}

.order-status p strong {
    color: #FFFFFF;
}

/* Checkout Modal */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0A0F2Bcc;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1003;
}

.checkout-modal.open {
    display: flex;
}

.checkout-modal-content {
    background: #1C2526;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.checkout-modal-content h2 {
    font-size: 16px;
    color: #F6C107;
    margin-bottom: 16px;
}

.checkout-modal-content button {
    padding: 10px;
    background: #F6C107;
    color: #0A0F2B;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
    margin: 10px 5px;
}

.checkout-modal-content button:hover {
    background: #D4A406;
}

.checkout-modal-content .close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FF5959;
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 20px;
}

.checkout-form {
    display: none;
    flex-direction: column;
    gap: 10px;
}

.checkout-form.active {
    display: flex;
}

.checkout-form label {
    font-size: 13px;
    color: #A0AEC0;
}

.checkout-form input {
    width: 100%;
    padding: 10px;
    background: #0A0F2B;
    border: 1px solid #FFFFFF20;
    border-radius: 6px;
    color: #FFFFFF;
    font-size: 13px;
}

.checkout-form input:focus {
    border-color: #F6C107;
    outline: none;
}

.checkout-form button {
    width: 100%;
}

/* Login */
.login-container {
    max-width: 400px;
    margin: 100px auto 20px;
    background: #1C2526;
    padding: 20px;
    border-radius: 8px;
    animation: slideUp 0.5s ease;
}

.login-container h2 {
    font-size: 16px;
    color: #F6C107;
    margin-bottom: 16px;
    text-align: center;
}

.login-container label {
    font-size: 13px;
    color: #A0AEC0;
    margin-bottom: 4px;
    display: block;
}

.login-container input {
    width: 100%;
    padding: 10px;
    background: #0A0F2B;
    border: 1px solid #FFFFFF20;
    border-radius: 6px;
    color: #FFFFFF;
    font-size: 13px;
}

.login-container input:focus {
    border-color: #F6C107;
    outline: none;
}

.login-container button {
    width: 100%;
    padding: 10px;
    background: #F6C107;
    color: #0A0F2B;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.login-container button:hover {
    background: #D4A406;
}

/* Admin Panel */
.admin-container {
    max-width: 1809px;
    margin: 60px auto;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    overflow-x: auto;
    transition: transform 0.3s ease;
}

.admin-container:hover {
    transform: translateY(-4px);
}

.admin-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    background: #1E293B;
    padding: 12px;
    border-radius: 12px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.15);
    flex-wrap: wrap;
}

.admin-nav a {
    padding: 12px 24px;
    color: #E2E8F0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    background: transparent;
}

.admin-nav a:hover {
    background: linear-gradient(90deg, #FBBF24, #F59E0B);
    color: #1E293B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.admin-nav a.active {
    background: linear-gradient(90deg, #FBBF24, #F59E0B);
    color: #1E293B;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.admin-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: #FBBF24;
    border-radius: 2px;
}

.admin-section {
    margin-top: 24px;
    animation: fadeIn 0.5s ease;
}

.admin-section h2 {
    font-size: 24px;
    color: #FBBF24;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.admin-section h2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, #FBBF24, #F59E0B);
    border-radius: 2px;
}

/* Product Table */
.product-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #1E293B;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.product-table th,
.product-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #334155;
    transition: background 0.2s ease;
}

.product-table th {
    background: linear-gradient(90deg, #FBBF24, #F59E0B);
    color: #1E293B;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.product-table td {
    color: #E2E8F0;
    font-size: 15px;
}

.product-table tr:hover {
    background: #334155;
}

.product-table img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #FFFFFF20;
}

.product-table button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-table button.edit {
    background: #10B981;
    color: #FFFFFF;
}

.product-table button.delete {
    background: #EF4444;
    color: #FFFFFF;
}

.product-table button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.product-table button:active {
    transform: scale(0.95);
}

/* Banner Table */
.banner-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #1E293B;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.banner-table th,
.banner-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #334155;
    font-size: 15px;
}

.banner-table th {
    background: linear-gradient(90deg, #FBBF24, #F59E0B);
    color: #1E293B;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

.banner-table td {
    color: #E2E8F0;
}

.banner-table img {
    width: 72px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #FFFFFF20;
}

.banner-table .status-active {
    color: #10B981;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

.banner-table .status-inactive {
    color: #EF4444;
    font-weight: 600;
    background: rgba(239, 68, 68, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

.banner-table button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.banner-table button.edit {
    background: #10B981;
    color: #FFFFFF;
}

.banner-table button.delete {
    background: #EF4444;
    color: #FFFFFF;
}

.banner-table button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.banner-table tr:hover {
    background: #334155;
}

/* Admin Form */
.admin-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #1E293B;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.admin-form:hover {
    transform: translateY(-4px);
}

.admin-form label {
    font-size: 15px;
    color: #E2E8F0;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    padding: 12px;
    background: #0F172A;
    border: 1px solid #334155;
    border-radius: 8px;
    color: #E2E8F0;
    font-size: 15px;
    transition: all 0.3s ease;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
    border-color: #FBBF24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
    outline: none;
}

.admin-form button {
    grid-column: span 2;
    padding: 14px;
    background: linear-gradient(90deg, #FBBF24, #F59E0B);
    color: #1E293B;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-form button:hover {
    background: linear-gradient(90deg, #F59E0B, #D97706);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.admin-form button:active {
    transform: scale(0.98);
}

/* Orders Section */
.orders-section {
    background: #1E293B;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease;
    overflow-x: auto;
    box-sizing: border-box;
}

.orders-section h2 {
    font-size: 24px;
    color: #FBBF24;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

/* Orders Table */
.orders-table {
    width: 100%;
    max-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #0F172A;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

.orders-table th,
.orders-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #334155;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}

.orders-table th {
    background: linear-gradient(90deg, #FBBF24, #F59E0B);
    color: #1E293B;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

.orders-table td {
    color: #E2E8F0;
}

.orders-table tr:hover {
    background: #334155;
}

.orders-table select {
    background: #0F172A;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 10px;
    color: #E2E8F0;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.orders-table select:focus {
    border-color: #FBBF24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
    outline: none;
}

/* Status Colors */
.status-pendente {
    color: #FBBF24;
    font-weight: 600;
    background: rgba(251, 191, 36, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
}

.status-confirmado {
    color: #10B981;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
}

.status-enviado {
    color: #3B82F6;
    font-weight: 600;
    background: rgba(59, 130, 246, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
}

.status-entregue {
    color: #22C55E;
    font-weight: 600;
    background: rgba(34, 197, 94, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
}

.status-cancelado {
    color: #EF4444;
    font-weight: 600;
    background: rgba(239, 68, 68, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
}

/* Action Buttons */
.orders-table .action-button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.orders-table .action-button.view {
    background: #10B981;
    color: #FFFFFF;
}

.orders-table .action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Order Details Page */
.order-details {
    background: #1E293B;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease;
}

.order-details h2 {
    font-size: 24px;
    color: #FBBF24;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.order-details h3 {
    font-size: 18px;
    color: #E2E8F0;
    margin: 16px 0 12px;
    border-bottom: 2px solid #FBBF24;
    padding-bottom: 8px;
}

.order-details p {
    font-size: 15px;
    color: #A0AEC0;
    margin: 8px 0;
}

.order-details p strong {
    color: #E2E8F0;
    font-weight: 600;
}

.order-details form {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.order-details select {
    background: #0F172A;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 12px;
    color: #E2E8F0;
    font-size: 15px;
    cursor: pointer;
}

.order-details select:focus {
    border-color: #FBBF24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
    outline: none;
}

.order-details button {
    padding: 12px 24px;
    background: linear-gradient(90deg, #FBBF24, #F59E0B);
    color: #1E293B;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-details button:hover {
    background: linear-gradient(90deg, #F59E0B, #D97706);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.order-details .back-button {
    display: inline-block;
    background: linear-gradient(90deg, #FBBF24, #F59E0B);
    color: #1E293B;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    margin: 24px 0;
    transition: all 0.3s ease;
}

.order-details .back-button:hover {
    background: linear-gradient(90deg, #F59E0B, #D97706);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.order-details .back-button:active {
    transform: scale(0.98);
}

/* Out of Stock Label */
.out-of-stock {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #FF5959;
    color: #FFFFFF;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Links dos produtos - Correção para remover sublinhado */
div.product-card a.product-info-link,
div.product-card a.product-info-link:link,
div.product-card a.product-info-link:visited,
div.product-card a.product-info-link:hover,
div.product-card a.product-info-link:active {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

/* Garantir cores específicas para os elementos */
div.product-card .product-info h3 {
    color: #FFFFFF !important;
}

div.product-card .product-info .current-price {
    color: #F6C107 !important;
    text-decoration: none !important;
}

div.product-card .product-info .pix-text {
    color: #A0AEC0 !important;
    text-decoration: none !important;
}

div.product-card .product-info .previous-price {
    color: #A0AEC0 !important;
    text-decoration: line-through !important;
}

div.product-card .product-info .discount {
    color: #22C55E !important;
    text-decoration: none !important;
}

/* Notification */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background: #22C55E;
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 10000 !important;
    display: none !important;
    pointer-events: none !important;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
    display: block !important;
    pointer-events: auto !important;
}

/* Dashboard Styles */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
    animation: fadeIn 0.5s ease;
}

.dashboard-card {
    background: #1E293B;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-4px);
}

.dashboard-card h3 {
    font-size: 18px;
    color: #FBBF24;
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.dashboard-card p {
    font-size: 15px;
    color: #E2E8F0;
    margin: 8px 0;
}

.dashboard-card p strong {
    color: #FFFFFF;
    font-weight: 600;
}

.dashboard-chart {
    background: #1E293B;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    margin-top: 24px;
}

.dashboard-chart h3 {
    font-size: 18px;
    color: #FBBF24;
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Alertas */
.alert {
    background: #EF4444;
    color: #FFFFFF;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 8px;
}

/* Link no Dashboard */
.dashboard-link {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: #FBBF24;
    color: #1E293B;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dashboard-link:hover {
    background: #F59E0B;
    transform: translateY(-2px);
}

/* Botão de Exportação */
.export-btn {
    display: inline-block;
    margin: 12px 0;
    padding: 10px 20px;
    background: #10B981;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.export-btn:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Clients Section */
.clients-section {
    background: #1E293B;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease;
    overflow-x: auto;
}

.clients-section h2 {
    font-size: 24px;
    color: #FBBF24;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

/* Clients Table */
.clients-table {
    width: 100%;
    max-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #0F172A;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

.clients-table th,
.clients-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #334155;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}

.clients-table th {
    background: linear-gradient(90deg, #FBBF24, #F59E0B);
    color: #1E293B;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

.clients-table td {
    color: #E2E8F0;
}

.clients-table tr:hover {
    background: #334155;
}

/* WhatsApp Action Button */
.clients-table .action-button.whatsapp {
    background: #25D366;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.clients-table .action-button.whatsapp:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.clients-table .action-button.whatsapp svg {
    stroke: #FFFFFF;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .banner-carousel,
    .banner-placeholder {
        margin: 60px auto 15px;
    }

    .banner-slide img {
        max-height: 300px;
    }

    .banner-control {
        padding: 8px;
        font-size: 16px;
    }

    .banner-play-pause {
        padding: 6px 10px;
        font-size: 14px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 15px;
    }

    .product-card {
        min-height: 280px;
    }

    .product-card img {
        height: 120px;
    }

    .product-info {
        padding: 6px;
        margin-bottom: 6px;
    }

    .product-info h3 {
        font-size: 13px;
    }

    .previous-price-container {
        gap: 4px;
    }

    .previous-price {
        font-size: 12px;
    }

    .discount {
        font-size: 12px;
    }

    .discount-icon {
        width: 10px;
        height: 10px;
    }

    .current-price {
        font-size: 14px;
    }

    .pix-text {
        font-size: 11px;
    }

    .product-actions {
        padding: 6px;
    }

    .product-actions button {
        font-size: 12px;
        padding: 6px;
    }

    .out-of-stock {
        font-size: 11px;
        padding: 5px 8px;
    }

    .cart-modal {
        width: 100%;
    }

    .login-container {
        margin: 80px 20px 20px;
    }

    .admin-container {
        margin: 40px 16px;
        padding: 16px;
    }

    .admin-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-nav a {
        text-align: center;
        padding: 10px;
        font-size: 14px;
    }

    .admin-form {
        grid-template-columns: 1fr;
    }

    .admin-form button {
        grid-column: span 1;
    }

    .product-table th,
    .product-table td,
    .banner-table th,
    .banner-table td,
    .orders-table th,
    .orders-table td,
    .clients-table th,
    .clients-table td {
        padding: 12px;
        font-size: 14px;
    }

    .product-table img,
    .banner-table img {
        width: 40px;
        height: 40px;
    }

    .product-table button,
    .banner-table button,
    .orders-table .action-button,
    .clients-table .action-button.whatsapp {
        padding: 8px 16px;
        font-size: 13px;
    }

    .clients-table .action-button.whatsapp svg {
        width: 14px;
        height: 14px;
    }

    .order-details {
        margin: 40px 16px;
        padding: 16px;
    }

    .order-details h2 {
        font-size: 20px;
    }

    .order-details h3 {
        font-size: 16px;
    }

    .order-details p {
        font-size: 14px;
    }

    .order-details select,
    .order-details button {
        font-size: 14px;
        padding: 10px;
    }

    .order-details .back-button {
        padding: 10px 20px;
        font-size: 15px;
    }

    .sidebar {
        width: 100%;
        left: -100%;
    }

    .menu-toggle {
        font-size: 20px;
        padding: 8px;
    }

    .sidebar-logo {
        width: 250px;
    }

    .sidebar-info {
        font-size: 13px;
    }

    .sidebar-button {
        font-size: 13px;
        padding: 10px;
    }

    .last-orders-page,
    .track-order-page {
        margin: 80px 20px 20px;
        padding: 15px;
    }

    .last-orders-page h2,
    .track-order-page h2 {
        font-size: 16px;
    }

    .order-item h3,
    .order-status h3 {
        font-size: 14px;
    }

    .order-item p,
    .order-status p {
        font-size: 13px;
    }

    .payment-link {
        padding: 6px 12px;
        font-size: 12px;
    }

    .product-details {
        flex-direction: column;
        margin: 80px 20px 20px;
    }

    .product-image img {
        max-width: 100%;
    }

    .cart-page {
        margin: 80px 20px 20px;
    }

    .cart-item {
        flex-wrap: wrap;
    }

    .cart-item button {
        margin-top: 10px;
    }

    .footer-content {
        padding: 0 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dashboard-card,
    .dashboard-chart {
        padding: 16px;
    }

    .dashboard-card h3,
    .dashboard-chart h3 {
        font-size: 16px;
    }

    .dashboard-card p {
        font-size: 14px;
    }

    .clients-section {
        padding: 16px;
    }
}

@media (max-width: 576px) {
    header {
        padding: 7px;
    }

    .header-logo {
        height: 32px;
    }

    .menu-toggle {
        font-size: 20px;
        padding: 8px;
    }

    .banner-carousel,
    .banner-placeholder {
        margin: 60px auto 10px;
    }

    .banner-slide img {
        max-height: 200px;
    }

    .search-container {
        margin: 10px auto;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 15px;
    }

    .product-card {
        min-height: 260px;
    }

    .product-card img {
        height: 140px;
    }

    .product-info h3 {
        font-size: 14px;
    }

    .previous-price-container {
        gap: 4px;
    }

    .previous-price {
        font-size: 11px;
    }

    .discount {
        font-size: 11px;
    }

    .discount-icon {
        width: 9px;
        height: 9px;
    }

    .current-price {
        font-size: 13px;
    }

    .pix-text {
        font-size: 10px;
    }

    .product-actions button {
        font-size: 13px;
    }

    .out-of-stock {
        font-size: 10px;
        padding: 4px 6px;
    }

    .login-container {
        padding: 15px;
    }

    .login-container h2 {
        font-size: 15px;
    }

    .login-container input,
    .login-container button {
        font-size: 12px;
    }

    .product-info-details h2 {
        font-size: 16px;
    }

    .product-info-details .current-price {
        font-size: 14px;
    }

    .footer-content h3 {
        font-size: 16px;
    }

    .footer-content p.description {
        font-size: 13px;
    }

    .admin-container {
        margin: 20px 12px;
        padding: 12px;
    }

    .admin-section h2 {
        font-size: 20px;
    }

    .product-table th,
    .product-table td,
    .banner-table th,
    .banner-table td,
    .orders-table th,
    .orders-table td,
    .clients-table th,
    .clients-table td {
        padding: 10px;
        font-size: 13px;
    }

    .product-table img,
    .banner-table img {
        width: 32px;
        height: 32px;
    }

    .product-table button,
    .banner-table button,
    .orders-table .action-button,
    .clients-table .action-button.whatsapp {
        padding: 6px 12px;
        font-size: 12px;
    }

    .clients-table .action-button.whatsapp svg {
        width: 12px;
        height: 12px;
    }

    .admin-form {
        padding: 16px;
    }

    .admin-form label {
        font-size: 14px;
    }

    .admin-form input,
    .admin-form textarea,
    .admin-form select {
        padding: 10px;
        font-size: 14px;
    }

    .admin-form button {
        padding: 12px;
        font-size: 15px;
    }

    .order-details h2 {
        font-size: 18px;
    }

    .order-details h3 {
        font-size: 14px;
    }

    .order-details p {
        font-size: 13px;
    }

    .order-details select,
    .order-details button {
        font-size: 13px;
        padding: 8px;
    }

    .order-details .back-button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .cart-page {
        margin: 80px 20px;
        padding: 15px;
    }

    .cart-page h2 {
        font-size: 14px;
    }

    .notification {
        top: 60px;
        right: 10px;
        padding: 10px 15px;
        font-size: 13px;
    }

    .dashboard-card,
    .dashboard-chart {
        padding: 12px;
    }

    .dashboard-card h3,
    .dashboard-chart h3 {
        font-size: 14px;
    }

    .dashboard-card p {
        font-size: 13px;
    }

    .clients-section {
        padding: 12px;
    }
}

/* NAVBAR estilo premium */
.bottom-nav-modern {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 98%;
    height: 50px;
    background: #111318;
    border-radius: 25px 25px 0 0;
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    z-index: 9999;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.4);
}

/* Itens normais */
.bottom-nav-modern .nav-item {
    color: #7c828b;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    gap: 3px;
    transition: 0.25s ease;
}

/* Ícones */
.bottom-nav-modern .nav-item .icon {
    font-size: 22px;
    opacity: 0.7;
    transition: 0.2s ease;
}

/* Botão Central */
.bottom-nav-modern .center-btn {
    position: relative;
    top: -22px;
    background: #45d3c0; /* roxo igual ao da foto */ 
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 15px rgba(227, 231, 0, 0.5);
}

.bottom-nav-modern .center-btn .icon {
    font-size: 30px;
    color: white;
    opacity: 1;
}

/* Ícone ativo */
.bottom-nav-modern .nav-item.active .icon {
    opacity: 1;
    color: white;
}

.bottom-nav-modern .nav-item.active span {
    color: white;
    font-weight: 600;
}

/* Apenas Mobile */
@media (max-width: 768px) {
    .bottom-nav-modern {
        display: flex;
    }
    body {
        padding-bottom: 95px !important;
    }
}

/* Corrige ícones tortos (tirar italic) */
.bottom-nav-modern .icon,
.mobile-nav .icon,
.nav-item .icon,
i.icon {
    font-style: normal !important;
}


/* Estilos específicos para o SITE */
body.site-body {
  background: #ffffff !important;
  color: #000000;
}

/* Estilos específicos para o ADMIN */
body.admin-body {
  background: #0a0f2b; /* ou a cor que você já usa no admin */
  color: #ffffff;
}


/* Ícones em imagem */
.bottom-nav-modern .nav-item .icon {
    width: 70px;
    height: 22px;
    opacity: 0.7;
    transition: 0.2s ease;
    object-fit: contain;
}

/* Ícone do botão central */
.bottom-nav-modern .center-btn .icon {
    width: 70px;
    height: 34px;
    opacity: 1;
}


/* Barrinha inferior do item ativo */
.bottom-nav-modern .nav-item {
    position: relative;
}

.bottom-nav-modern .nav-item.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 3px;
    background: #45d3c0; /* Cor da barra (pode trocar) */
    border-radius: 50px;
    animation: fadeBar 0.2s ease;
}

/* Animação suave */
@keyframes fadeBar {
    from { opacity: 0; width: 0; }
    to { opacity: 1; width: 26px; }
}

/* ====================== CHECKOUT PERFEITO – PC + CELULAR (CORRIGIDO 2025) ====================== */
.checkout-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.checkout-modal.open { 
    display: flex; 
}

.checkout-modal-content {
    background: #161B22;
    width: 100%;
    max-width: 500px;
    max-height: 95vh;
    border-radius: 20px;
    padding: 30px;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    /* SCROLL FINO E BONITO NO PC */
    scrollbar-width: thin;
    scrollbar-color: #F6C107 #333;
}
.checkout-modal-content::-webkit-scrollbar { width: 8px; }
.checkout-modal-content::-webkit-scrollbar-track { background: #333; border-radius: 10px; }
.checkout-modal-content::-webkit-scrollbar-thumb { background: #F6C107; border-radius: 10px; }

.checkout-modal h2 {
    text-align: center;
    color: #F6C107;
    margin: 0 0 25px;
    font-size: 26px;
}

.close-modal {
    position: absolute;
    top: 15px; right: 20px;
    background: none;
    border: none;
    font-size: 34px;
    color: #999;
    cursor: pointer;
    z-index: 10;
}

.checkout-tabs {
    display: flex;
    margin: 20px 0;
    border-bottom: 2px solid #333;
    justify-content: center;
    gap: 30px;
}

.tab-btn {
    padding: 12px 20px;
    background: none;
    border: none;
    color: #888;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
}

.tab-btn.active {
    color: #000000;
    border-bottom: 4px solid #F6C107;
}

.checkout-form { 
    display: none; 
}
.checkout-form.active { 
    display: block; 
}

.form-group {
    margin-bottom: 18px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #DDD;
    font-size: 15px;
    font-weight: 500;
}

.form-group input,
.form-group input[readonly] {
    width: 100%;
    padding: 16px;
    border: 1px solid #444;
    border-radius: 12px;
    background: #0D1117;
    color: white;
    font-size: 16px;
    box-sizing: border-box;
}

/* Campo cidade fixo e bonito */
.form-group input[readonly] {
    background: #1a1f27;
    color: #AAA;
    font-weight: bold;
}

.info-text {
    font-size: 14px;
    color: #AAA;
    text-align: center;
    margin: 20px 0;
    padding: 0 10px;
}

.btn-checkout {
    width: 100%;
    padding: 18px;
    background: linear-gradient(90deg, #F6C107, #E0A800);
    color: black;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 14px;
    margin-top: 10px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(246,193,7,0.4);
    transition: all 0.2s;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246,193,7,0.5);
}

/* RESPONSIVO PERFEITO */
@media (max-width: 768px) {
    .checkout-modal {
        align-items: flex-end;
        padding: 0;
    }
    .checkout-modal-content {
        border-radius: 20px 20px 0 0;
        max-height: 92vh;
        padding: 25px 20px;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .checkout-tabs {
        gap: 20px;
    }
}