/* Reset básico e estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #f5f5f5;
    color: #333;
    -webkit-overflow-scrolling: touch;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.logout-btn {
    background: none;
    border: none;
    color: #FF6B00;
    font-size: 13px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s;
    text-align: left;
    width: fit-content;
}


/* Header styles */
.header {
    background: #FF6B00;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1000;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    color: white;
    font-size: 1.8rem;
    line-height: 1;
}

.logo p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

/* Search bar */
.search-bar {
    display: flex;
    flex-grow: 1;
    max-width: 500px;
    margin: 0 1rem;
}

.search-bar input {
    padding: 0.6rem;
    border: none;
    border-radius: 4px 0 0 4px;
    width: 100%;
    font-size: 0.95rem;
}

.search-bar button {
    padding: 0 1rem;
    background: #333;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.search-bar button:hover {
    background: #555;
}

/* User actions */
.user-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.user-actions a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.user-actions a:hover {
    opacity: 0.9;
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #28A745;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}
.logout-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

/* Hamburger menu */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-content {
    width: 85%;
    max-width: 300px;
    height: 100%;
    background: white;
    padding: 2rem 1.5rem;
    position: relative;
}

.close-mobile-nav {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

.mobile-search-bar {
    display: flex;
    margin-bottom: 1.5rem;
}

.mobile-search-bar input {
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    width: 100%;
    font-size: 0.95rem;
}

.mobile-search-bar button {
    padding: 0 1rem;
    background: #FF6B00;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: #FF6B00;
}

/* Mobile user info */
.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 10px;
    background-color: rgba(255, 107, 0, 0.05);
    border-radius: 8px;
}

.mobile-user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FF6B00;
}

.mobile-user-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-user-name {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

#mobile-logout-btn {
    background: none;
    border: none;
    color: #FF6B00;
    font-size: 13px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s;
    text-align: left;
    width: fit-content;
}

#mobile-logout-btn:hover {
    background-color: rgba(255, 107, 0, 0.1);
}

#mobile-login-btn {
    background-color: #FF6B00;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 15px;
    width: 100%;
    transition: background-color 0.3s;
    font-weight: 600;
}

#mobile-login-btn:hover {
    background-color: #e05d00;
}

#mobile-cart-link {
    display: block;
    padding: 12px;
    background-color: #f5f5f5;
    border-radius: 8px;
    text-align: center;
    color: #333;
    font-weight: 600;
    transition: all 0.3s;
}

#mobile-cart-link:hover {
    background-color: #eee;
    color: #FF6B00;
}

/* Main content */
.main-content {
    flex: 1;
    padding-bottom: 2rem;
}

/* Filters */
.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.filters::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.filters button {
    padding: 0.5rem 1rem;
    background: #f0f0f0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
}

.filters button.active {
    background: #FF6B00;
    color: white;
    font-weight: bold;
}

.filters button:hover {
    background: #ddd;
}

/* Products grid */
.produtos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
}

.produto {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.produto:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.produto img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.produto:hover img {
    transform: scale(1.05);
}

.desconto {
    background: #28A745;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.8rem;
    font-weight: bold;
}

.produto h3 {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.3;
    color: #333;
}

.product-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
    min-height: 2.8em;
}

.preco-antigo {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.preco-atual {
    font-weight: bold;
    color: #FF6B00;
    font-size: 1.2rem;
    margin: 0.3rem 0;
}

.produto button {
    background: #FF6B00;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 0.5rem;
    width: 100%;
    transition: background 0.3s ease;
    font-weight: 600;
}

.produto button:hover {
    background: #E05D00;
}

/* Wishlist button */
.wishlist-btn {
    margin-top: 0.5rem;
    width: 100%;
    padding: 0.5rem;
    background: #f0f0f0;
    color: #FF6B00;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.wishlist-btn:hover {
    background: #FF6B00;
    color: white;
}

.wishlist-btn.active {
    background: #FF6B00;
    color: white;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #333;
}

.modal h2 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: #333;
}

.modal input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.modal input:focus {
    border-color: #FF6B00;
    outline: none;
}

.modal button[type="submit"] {
    width: 100%;
    padding: 0.8rem;
    background: #FF6B00;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.3s ease;
}

.modal button[type="submit"]:hover {
    background: #E05D00;
}

.divider {
    text-align: center;
    margin: 1rem 0;
    color: #666;
    position: relative;
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #ddd;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

/* Social login */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.3s ease;
}

.social-btn:hover {
    opacity: 0.9;
}

.social-btn.google {
    background: #4285F4;
    color: white;
}

.social-btn.apple {
    background: #000;
    color: white;
}

.signup-link,
.login-link {
    text-align: center;
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.signup-link a,
.login-link a {
    color: #FF6B00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.signup-link a:hover,
.login-link a:hover {
    color: #E05D00;
}

/* Cart styles */
.cart-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 1rem;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-weight: bold;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.cart-item-price {
    color: #FF6B00;
    font-weight: bold;
    font-size: 0.95rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-quantity button {
    background: #f0f0f0;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.cart-item-quantity button:hover {
    background: #ddd;
}

.cart-item-remove {
    color: #dc3545;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 1rem;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.cart-item-remove:hover {
    color: #a71d2a;
}

.cart-summary {
    text-align: right;
    padding: 1rem;
    border-top: 1px solid #eee;
}

.cart-summary p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.checkout-btn {
    background: #28A745;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
    width: 100%;
}

.checkout-btn:hover {
    background: #218838;
}

.checkout-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
}



.footer-content {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: #222; /* Adicionei fundo escuro ao conteúdo */
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #f0f0f0;
    font-size: 1.1rem;
}

.footer-section p, 
.footer-section a {
    margin-bottom: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FF6B00;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #FF6B00;
}

.footer-bottom {
    text-align: center;
    padding: 1rem;
    background: #222;
    font-size: 0.8rem;
    color: #aaa;
}

/* Toast notifications */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
    max-width: 90%;
    text-align: center;
}

.toast.success {
    background: #28A745;
}

.toast.error {
    background: #DC3545;
}

.toast.info {
    background: #17A2B8;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.fade-out {
    animation: fadeOut 0.3s forwards;
}

@keyframes fadeOut {
    to { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* Loading spinner */
.loading {
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #FF6B00;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Install button */
.install-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.install-btn {
    background: #FF6B00;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.install-btn:hover {
    background: #E05D00;
    transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }
    
    .search-bar,
    .user-actions {
        display: none;
    }
  
.user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.user-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.user-actions a {
    color: white;
    text-decoration: none;
}

.user-actions button {
    background: transparent;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
    
    .header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .logo {
        margin-right: auto;
    }

    /* Products grid mobile */
    .produtos {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .produto {
        padding: 0.8rem;
    }

    .product-image {
        height: 150px;
    }

    .product-description {
        display: none;
    }

    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .produtos {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 180px;
    }

    .filters {
        justify-content: flex-start;
        padding: 0.8rem;
    }

    .filters button {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    .install-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Utility classes */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.user-avatar {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 0 auto; /* ← CENTRALIZA HORIZONTALMENTE */
}
/* Estilo para o link de admin */
.admin-link {
    color: white;
    text-decoration: none;
    margin-right: 1rem;
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.admin-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Para a versão mobile (em mobile-nav.js) */
.mobile-admin-link {
    display: block;
    padding: 12px;
    background-color: #FF6B00;
    color: white;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s;
}
/* Adicione no arquivo app.css */
.produto {
    cursor: pointer;
    transition: all 0.3s ease;
}

.produto:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-image-container {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.product-info {
    padding: 0 0.5rem;
}
/* Estilos do Carrinho */
.cart-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.cart-modal .modal-content {
  background: white;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-right: 1rem;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.cart-item-price {
  color: #FF6B00;
  font-weight: bold;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.cart-item-quantity button {
  background: #f0f0f0;
  border: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.cart-item-quantity button:hover {
  background: #ddd;
}

.cart-item-remove {
  color: #dc3545;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1rem;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.cart-item-remove:hover {
  color: #a71d2a;
}

.cart-summary {
  padding: 1rem;
  border-top: 1px solid #eee;
  text-align: right;
}

.cart-summary p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.checkout-btn {
  background: #28A745;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
  width: 100%;
}

.checkout-btn:hover {
  background: #218838;
}

.checkout-btn:disabled {
  background: #cccccc;
  cursor: not-allowed;
}

.email-checkout {
  background: #FF6B00;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
  width: 100%;
  margin-top: 0.5rem;
}

.email-checkout:hover {
  background: #E05D00;
}
/* Cart Page Styles */
.cart-page {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cart-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.cart-container h2 {
    margin-bottom: 2rem;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.empty-cart {
    text-align: center;
    padding: 3rem 0;
}

.empty-cart i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.empty-cart p {
    color: #666;
    margin-bottom: 1.5rem;
}

.cart-summary {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.summary-details {
    text-align: right;
    margin-bottom: 2rem;
}

.summary-details p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.summary-details .total {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 1rem;
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.continue-shopping {
    display: block;
    text-align: center;
    color: #FF6B00;
    text-decoration: none;
    margin-top: 1rem;
}

.back-to-shop {
    color: white;
    text-decoration: none;
    margin-left: 1rem;
}

.mobile-back-to-shop {
    display: block;
    padding: 12px;
    background: #f5f5f5;
    border-radius: 8px;
    text-align: center;
    color: #333;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .cart-page {
        padding: 1rem;
    }
    
    .cart-container {
        padding: 1rem;
    }
}