:root {
  --main-color: #000000;
  --accent-color: #b8a600;
  --p-color: #cc9828;
  --light-color: #ffffff;
  --gray-color: #f2f1f1;
  --dark-gray: #333333;
  --border-radius: 8px;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--main-color);
  background-color: var(--light-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: var(--main-color);
  color: var(--light-color);
  padding: 1rem 0;
  box-shadow: var(--box-shadow);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
}

.logo a {
  color: var(--light-color);
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--light-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color);
}

.cart-count {
  background-color: var(--accent-color);
  color: var(--main-color);
  padding: 0.2rem 0.5rem;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: bold;
  margin-left: 0.5rem;
}

/* Main Content */
.main {
  min-height: calc(100vh - 120px);
  padding: 2rem 0;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--gray-color) 0%, var(--light-color) 100%);
  border-radius: var(--border-radius);
  margin-bottom: 3rem;
}

.hero h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--main-color);
}

.hero p {
  font-size: 1.2rem;
  color: var(--dark-gray);
}

/* Products Grid */
.products h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: var(--gray-color);
  color: var(--dark-gray);
  font-size: 1.1rem;
}

.product-info {
  padding: 1.5rem;
}

.product-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-name a {
  color: var(--main-color);
  text-decoration: none;
  transition: var(--transition);
}

.product-name a:hover {
  color: var(--accent-color);
}

.product-description {
  color: var(--dark-gray);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-highlight {
  color: var(--p-color);
  font-weight: 500;
  margin-bottom: 1rem;
  font-style: italic;
}

.product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.product-stock {
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.product-stock.in-stock {
  color: #28a745;
}

.product-stock.out-of-stock {
  color: #dc3545;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--main-color);
}

.btn-primary:hover {
  background-color: var(--p-color);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--dark-gray);
  color: var(--light-color);
}

.btn-secondary:hover {
  background-color: var(--main-color);
}

.btn-danger {
  background-color: #dc3545;
  color: var(--light-color);
}

.btn-danger:hover {
  background-color: #c82333;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.add-to-cart-form {
  margin: 0;
}

/* Product Detail */
.breadcrumb {
  margin-bottom: 2rem;
  color: var(--dark-gray);
}

.breadcrumb a {
  color: var(--accent-color);
  text-decoration: none;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.product-images {
  top: 2rem;
}

.main-image {
  margin-bottom: 1rem;
}

.main-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.no-image-large {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  background-color: var(--gray-color);
  color: var(--dark-gray);
  font-size: 1.5rem;
  border-radius: var(--border-radius);
}

.image-gallery {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--border-radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--accent-color);
}

.product-details h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-price-large {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.product-sections {
  margin-top: 2rem;
}

.product-section {
  margin-bottom: 2rem;
}

.product-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--main-color);
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.5rem;
}

.product-section p {
  color: var(--dark-gray);
  line-height: 1.6;
}

/* Cart */
.empty-cart {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-cart-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.empty-cart h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.empty-cart p {
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

.cart-actions {
  margin-bottom: 2rem;
}

.cart-table {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.cart-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.cart-table th,
.cart-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-color);
}

.cart-table th {
  background-color: var(--main-color);
  color: var(--light-color);
  font-weight: 600;
}

.cart-product {
  width: 40%;
}

.cart-product-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-product-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.cart-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.no-image-small {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--gray-color);
  color: var(--dark-gray);
  font-size: 0.8rem;
  border-radius: var(--border-radius);
}

.cart-product-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.cart-product-info h4 a {
  color: var(--main-color);
  text-decoration: none;
}

.cart-product-info h4 a:hover {
  color: var(--accent-color);
}

.cart-product-description {
  color: var(--dark-gray);
  font-size: 0.9rem;
}

.cart-price,
.cart-total {
  font-weight: 600;
}

.quantity-form input[type="number"] {
  width: 80px;
  padding: 0.5rem;
  border: 1px solid var(--gray-color);
  border-radius: var(--border-radius);
  text-align: center;
}

.cart-total-row {
  background-color: var(--gray-color);
  font-size: 1.1rem;
}

.cart-checkout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* Admin */
.admin-login {
  max-width: 400px;
  margin: 3rem auto;
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.admin-login h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.admin-form {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 3rem;
}

.admin-form h3 {
  margin-bottom: 2rem;
}

.product-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--main-color);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--gray-color);
  border-radius: var(--border-radius);
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(184, 166, 0, 0.2);
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.admin-products {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.admin-products h3 {
  margin-bottom: 2rem;
}

.products-table {
  overflow-x: auto;
}

.products-table table {
  width: 100%;
  border-collapse: collapse;
}

.products-table th,
.products-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-color);
}

.products-table th {
  background-color: var(--main-color);
  color: var(--light-color);
  font-weight: 600;
}

.products-table tr.editing {
  background-color: rgba(184, 166, 0, 0.1);
}

.actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* Alerts */
.alert {
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--dark-gray);
}

/* Footer */
.footer {
  background-color: var(--main-color);
  color: var(--light-color);
  text-align: center;
  padding: 1.5rem 0;
  margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav {
    gap: 1rem;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .product-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cart-table {
    font-size: 0.9rem;
  }
  
  .cart-product-info {
    flex-direction: column;
    text-align: center;
  }
  
  .cart-checkout {
    flex-direction: column;
  }
  
  .admin-header {
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0;
  }
  
  .product-info {
    padding: 1rem;
  }
  
  .cart-table th,
  .cart-table td {
    padding: 0.5rem;
  }
  
  .admin-form {
    padding: 1rem;
  }
  
  .admin-products {
    padding: 1rem;
  }
}

/* Admin taby */
.admin-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-tab {
  padding: 0.5rem 1rem;
  background: var(--color-secondary);
  color: var(--color-text-light);
  text-decoration: none;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.admin-tab:hover {
  background: var(--color-primary);
}

.admin-tab.active {
  background: var(--color-primary);
  font-weight: 500;
}

/* Objednávky v admin panelu */
.admin-orders {
  background: var(--color-light-gray);
  padding: 2rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.order-card {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-light-gray);
}

.order-header h4 {
  margin: 0;
  color: var(--color-primary);
}

.order-date {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.order-customer {
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(--color-light-gray);
  border-radius: 0.25rem;
}

.order-customer div {
  margin-bottom: 0.25rem;
}

.order-payment, .order-notes {
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: #f8f9fa;
  border-radius: 0.25rem;
}

.order-items ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.order-items li {
  margin-bottom: 0.25rem;
}

.order-total {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-light-gray);
  font-size: 1.1rem;
}

.status-form {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-light-gray);
}

.status-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.status-form select {
  padding: 0.5rem;
  border: 1px solid var(--color-light-gray);
  border-radius: 0.25rem;
  background: white;
}

/* Checkout stránka */
.checkout-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.checkout-left, .checkout-right {
  background: var(--color-light-gray);
  padding: 2rem;
  border-radius: 0.5rem;
}

.order-summary {
  border: 1px solid var(--color-light-gray);
  border-radius: 0.5rem;
  background: white;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--color-light-gray);
}

.order-item:last-child {
  border-bottom: none;
}

.order-item-info {
  flex: 1;
}

.order-item-quantity {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-top: 0.25rem;
}

.order-item-total {
  font-weight: 500;
  color: var(--color-primary);
}

.order-total {
  padding: 1rem;
  background: var(--color-primary);
  color: white;
  text-align: center;
  border-radius: 0 0 0.5rem 0.5rem;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-method {
  padding: 1rem;
  border: 2px solid var(--color-light-gray);
  border-radius: 0.5rem;
  background: white;
  transition: all 0.3s ease;
}

.payment-method:has(input:checked) {
  border-color: var(--color-primary);
  background: #f8f9fa;
}

.payment-method input[type="radio"] {
  margin-right: 0.75rem;
}

.payment-method label {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.payment-method strong {
  color: var(--color-text);
}

.payment-method span {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.checkout-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

/* Úspěšná objednávka */
.order-success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--color-light-gray);
  border-radius: 0.5rem;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.order-success h2 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Moje objednávky na hlavní stránce */
.my-orders {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--color-light-gray);
}

.orders-search {
  background: var(--color-light-gray);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.email-search {
  display: flex;
  gap: 1rem;
  align-items: end;
}

.email-search input[type="email"] {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--color-light-gray);
  border-radius: 0.25rem;
}

.user-orders-results {
  margin-top: 1.5rem;
}

.no-orders {
  text-align: center;
  padding: 2rem;
  color: var(--color-text-secondary);
  background: var(--color-light-gray);
  border-radius: 0.5rem;
}

.user-orders-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.user-order-card {
  background: white;
  border: 1px solid var(--color-light-gray);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.user-order-card .order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-light-gray);
}

.user-order-card h5 {
  margin: 0;
  color: var(--color-primary);
}

.order-status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
}

.status-nová { background: #e3f2fd; color: #1976d2; }
.status-zpracováváno { background: #fff3e0; color: #f57c00; }
.status-připraveno { background: #e8f5e8; color: #388e3c; }
.status-expedováno { background: #f3e5f5; color: #7b1fa2; }
.status-dokončeno { background: #e8f5e8; color: #2e7d32; }
.status-zrušeno { background: #ffebee; color: #d32f2f; }

.order-payment-info, .order-items-summary {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

.order-items-summary ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.order-total-price {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-light-gray);
  text-align: right;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .checkout-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .email-search {
    flex-direction: column;
  }
  
  .success-actions, .checkout-actions {
    flex-direction: column;
  }
  
  .admin-tabs {
    flex-direction: column;
  }
}


/* style.css */
:root {
  --main-color: #000;
  --accent-color: #b8a600;
  --light: #fff;
  --gray: #f2f1f1;
  --dark-gray: #333;
  --radius: 8px;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

* {
  margin:0; padding:0; box-sizing:border-box;
}

body {
  font-family:'Roboto',sans-serif;
  background:var(--light);
  color:var(--main-color);
}

.container {
  max-width:1200px; margin:0 auto; padding:20px;
}

.header {
  background:var(--main-color); color:var(--light);
  padding:1rem 0; box-shadow:var(--shadow);
}

.header .container {
  display:flex; justify-content:space-between; align-items:center;
}

.logo a {
  color:var(--light); text-decoration:none; font-size:1.8rem; font-weight:700;
}

.nav {
  display:flex; gap:1.5rem;
}

.nav-link {
  color:var(--light); text-decoration:none; font-weight:500;
  transition:0.3s;
}

.nav-link.active, .nav-link:hover {
  color:var(--accent-color);
}

.main {
  min-height:calc(100vh - 160px); padding:2rem 0;
}

/* Modal */
.modal-overlay {
  position:fixed; top:0; left:0; width:100%; height:100%;
  background:rgba(0,0,0,0.5); display:flex;
  justify-content:center; align-items:center; z-index:999;
}
.modal {
  background:var(--light); padding:2rem;
  border-radius:var(--radius); box-shadow:var(--shadow);
  text-align:center; max-width:400px; width:90%;
}

/* Forms */
.form-group, .payment-method {
  margin-bottom:1rem;
}
.form-group label, .payment-method label {
  display:block; margin-bottom:0.5rem; font-weight:500;
}
.form-group input, .form-group textarea, .checkout-form input[type="email"], .checkout-form input[type="tel"] {
  width:100%; padding:0.75rem; border:1px solid #ccc;
  border-radius:var(--radius);
}
.checkout-form .payment-method input[type="radio"] {
  margin-right:0.5rem;
}
.checkout-form input[type="radio"][disabled] + label {
  color:#999; cursor:not-allowed;
}
.btn {
  padding:0.75rem 1.5rem; border:none; border-radius:var(--radius);
  cursor:pointer; font-weight:500; text-decoration:none; display:inline-block;
  transition:0.3s;
}
.btn-primary {
  background:var(--accent-color); color:var(--main-color);
}
.btn-primary:hover {
  transform:translateY(-2px);
}
.btn-secondary {
  background:var(--dark-gray); color:var(--light);
}
.btn-secondary:hover {
  background:var(--main-color);
}

/* Checkout layout */
.checkout-container {
  display:grid; grid-template-columns:1fr 1fr; gap:2rem; margin-top:2rem;
}
.checkout-left, .checkout-right {
  background:var(--gray); padding:2rem;
  border-radius:var(--radius); box-shadow:var(--shadow);
}
.order-summary {
  background:var(--light); border-radius:var(--radius);
}
.order-item {
  display:flex; justify-content:space-between; align-items:center;
  padding:1rem; border-bottom:1px solid #eee;
}
.order-item:last-child {
  border-bottom:none;
}
.order-item-info {
  flex:1;
}
.order-item-quantity {
  display:block; margin-top:0.25rem; font-size:0.9rem; color:#666;
}
.order-item-total {
  font-weight:500;
}
.order-total {
  padding:1rem; text-align:center; font-weight:700;
}

/* Alerts */
.alert {
  padding:1rem; border-radius:var(--radius); margin-bottom:1rem;
}
.alert-error {
  background:#f8d7da; color:#721c24; border:1px solid #f5c6cb;
}

/* Responsive */
@media (max-width:768px) {
  .checkout-container {
    grid-template-columns:1fr;
  }
}