:root {
  --bg-color: #e1e1e1;
  --text-color: #0b0b0b;
  --section-border: #ccc;
  --footer-text: #555;
  --primary-color: #b71111;
  --primary-hover: #d32f2f;
  --card-bg: #f4f4f4;
  --shadow-color: rgba(0, 0, 0, 0.1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --section-border: #404040;
    --footer-text: #bbb;
    --card-bg: #1a1a1a;
    --shadow-color: rgba(255, 255, 255, 0.05);
  }
}

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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--bg-color);
  color: var(--text-color);
  padding-top: 160px;
}

@media (max-width: 768px) {
  body {
    padding-top: 100px;
  }
}

/* Logo and Navigation Styles */
.logo-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px;
  padding-top: max(10px, env(safe-area-inset-top));
  padding-right: env(safe-area-inset-right);
  padding-left: env(safe-area-inset-left);
  pointer-events: none;
  margin: 0;
  background-color: var(--bg-color);
  transition: transform 0.3s ease;
}

.logo {
  position: absolute;
  height: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: all;
}

.logo {
  position: absolute;
  height: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: all;
}

.logo-centered {
  max-width: 420px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease-out, visibility 0s;
}

@media (max-width: 768px) {
  .logo-centered {
    max-width: 300px;
    margin-top: -25px;
  }
}

.logo-corner {
  width: 70px;
  left: 16px;
  top: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-out, visibility 0s 0.2s;
}

body.scrolled .logo-centered {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-out, visibility 0s 0.2s;
}

body.scrolled .logo-corner {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease-out, visibility 0s;
}

@media (max-width: 600px) {
  .logo-centered {
    max-width: 340px;
    margin-top: -15px;
  }
  
  .logo-corner {
    width: 60px;
    left: 12px;
    top: 12px;
  }
}



/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px var(--shadow-color);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: 1rem;
}

.product-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

/* Store Layout */
.store-header {
  text-align: center;
  margin: 2rem 0 3rem;
}

.store-description {
  color: var(--footer-text);
  margin-top: 0.5rem;
}

.store-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    padding: 1rem;
  }
}

/* Product Cards */
.product-card {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 6px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: visible;
  cursor: pointer;
  position: relative;
  height: 100%;
}

.product-image-container {
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px var(--shadow-color);
}

.product-image-container {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* Creates perfect square */
  background: white; /* Solid white background */
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-color: white;
  pointer-events: auto;
}

/* Remove the transform on container to prevent distortion */
.product-image-container:hover {
  opacity: 0.95;
}

/* Keep the hover effect subtle */
.product-card:hover .product-image {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.product-info {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 90px;
  background: var(--card-bg);
  position: relative;
}

.product-title {
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    text-align: center;
    font-weight: 500;
    color: var(--text-color);
    min-height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.25;
}

@media (max-width: 768px) {
  .product-info {
    padding-top: 2rem;
    min-height: 120px;
  }

  .product-title {
    font-size: 0.95rem;
    min-height: 2.5em;
  }
}

.product-price {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 1.25rem;
    text-align: center;
    opacity: 0.9;
}

.view-variants-btn {
    margin-top: auto;
    width: 100%;
    padding: 0.6rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    box-shadow: 0 2px 4px rgba(183, 17, 17, 0.2);
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .view-variants-btn {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
}

.view-variants-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(183, 17, 17, 0.3);
}

.view-variants-btn:hover {
    background: var(--primary-hover);
}.product-variants {
  color: var(--footer-text);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Buttons */
.view-variants-btn, .notify-btn {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.view-variants-btn {
  background: var(--primary-color);
  color: white;
}

.view-variants-btn:hover {
  background: var(--primary-hover);
}

.notify-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.notify-btn:hover {
  background: rgba(183, 17, 17, 0.1);
}

/* Coming Soon Styling */
.coming-soon {
  opacity: 0.9;
}

.coming-soon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* Loading Spinner */
.loading-spinner {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
}

.spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  border: 3px solid var(--section-border);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Error Message */
.error-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  background: rgba(183, 17, 17, 0.1);
  border-radius: 8px;
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .store-header {
    margin: 1rem 0 2rem;
  }

  .products-grid {
    gap: 1rem;
  }

  .product-info {
    padding: 1rem;
  }
}

/* Empty State */
.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--footer-text);
}

.add-to-cart {
  width: 100%;
  padding: 0.75rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.add-to-cart:hover {
  background: var(--primary-hover);
}

/* Cart Button */
.cart-button {
  position: fixed;
  top: 16px;
  right: 16px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  pointer-events: all;
  filter: brightness(1.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: white;
  color: var(--primary-color);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .cart-button {
    top: 12px;
    right: 12px;
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .cart-button.has-items {
    display: flex !important;
  }
}

@supports (padding: env(safe-area-inset-top)) {
  .cart-button {
    top: max(16px, env(safe-area-inset-top));
    right: max(16px, env(safe-area-inset-right));
  }
  
  @media (max-width: 768px) {
    .cart-button {
      top: max(12px, env(safe-area-inset-top));
      right: max(12px, env(safe-area-inset-right));
    }
  }
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: none;
    z-index: 999;
}.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background: var(--bg-color);
  color: var(--text-color);
  box-shadow: -2px 0 5px var(--shadow-color);
  z-index: 1999;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 1rem;
  border-bottom: 1px solid var(--section-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-cart {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--section-border);
  color: var(--text-color);
}

.cart-item h4,
.cart-item p,
.cart-total,
.empty-cart {
  color: var(--text-color);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.cart-item-details h4,
.cart-item-details p {
  color: var(--text-color);
}

.cart-item-price {
  color: var(--text-color);
}

.cart-footer {
  padding: 1rem;
  border-top: 1px solid var(--section-border);
  background: var(--bg-color);
  position: sticky;
  bottom: 0;
  box-shadow: 0 -2px 10px var(--shadow-color);
}

.cart-total-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cart-total {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-color);
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(183, 17, 17, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.checkout-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(183, 17, 17, 0.3);
}

.checkout-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(183, 17, 17, 0.2);
}

@media (max-width: 768px) {
  .cart-footer {
    padding: env(safe-area-inset-bottom, 1rem) env(safe-area-inset-right, 1rem) env(safe-area-inset-bottom, 1rem) env(safe-area-inset-left, 1rem);
  }
  
  .checkout-btn {
    padding: 0.875rem;
  }
}

/* Loading Spinner */
.loading-spinner {
  text-align: center;
  padding: 2rem;
  grid-column: 1 / -1;
  color: var(--text-color);
}

.error-message {
  text-align: center;
  padding: 2rem;
  grid-column: 1 / -1;
  color: var(--primary-color);
  background: rgba(183, 17, 17, 0.1);
  border-radius: 8px;
  margin: 2rem auto;
  max-width: 600px;
}

@media (max-width: 600px) {
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
  
  .products-grid {
    padding: 1rem;
    gap: 1rem;
  }
  
  .store-categories {
    flex-wrap: wrap;
  }
}

/* Dark mode logo adjustment */
@media (prefers-color-scheme: dark) {
  .logo-centered img {
    content: url('../jorobean_logoalt.webp');
  }
}

/* Product Dialog Styles */
.product-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
}

.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2002;
}

.dialog-content {
    position: relative;
    max-width: 1200px;
    width: 90vw;
    max-height: 90vh;
    background: var(--bg-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-color);
    color: var(--text-color);
    z-index: 2003;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (max-width: 768px) {
    .dialog-content {
        width: 100vw;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        padding: 1rem;
    }
    
    .product-dialog {
        padding: 0;
    }
}

.dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 1rem;
}

.dialog-header h2 {
    margin: 0;
    font-size: 2rem;
    color: var(--text-color);
    font-weight: 600;
}

.close-button-top-right {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #000000;
    border: none;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2004;
    transition: opacity 0.2s ease;
}

.close-button-top-right:hover {
    opacity: 0.8;
}

.dialog-body {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    padding-top: 2rem;
}

.product-image-section {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: zoom-in;
}

.dialog-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    aspect-ratio: 1;
    transition: transform 0.2s ease;
    transform-origin: 0 0;
}

.product-details {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: var(--text-color);
    height: fit-content;
}

@media (max-width: 1024px) {
    .dialog-body {
        grid-template-columns: 1fr 350px;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .dialog-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dialog-image {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .product-details {
        position: relative;
        top: 0;
        padding: 0;
    }

    .dialog-content {
        padding: 1.5rem;
    }
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
    margin: 0;
}

.size-selector {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.size-selector h3 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.size-grid {
    display: flex;
    gap: 0.5rem;
}

.size-button {
    min-width: 48px;
    height: 48px;
    border: 1px solid var(--section-border);
    border-radius: 4px;
    background: none;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.size-button:hover:not(:disabled) {
    border-color: var(--text-color);
}

.size-button.active {
    background: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
}

.size-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}

.color-selector {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.color-selector h3 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.color-grid {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.color-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border: 2px solid var(--section-border);
    border-radius: 4px;
    background: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.color-button:hover {
    border-color: var(--text-color);
}

.color-button.active {
    border-color: var(--text-color);
    background: var(--bg-color);
}

.color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--section-border);
}

.color-name {
    font-size: 0.9rem;
    color: var(--text-color);
}

.price {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-selector label {
    font-size: 1rem;
    font-weight: 500;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--section-border);
    border-radius: 4px;
    overflow: hidden;
}

.quantity-controls button {
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    color: var(--text-color);
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.quantity-controls button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.quantity-controls span {
    width: 48px;
    text-align: center;
    font-size: 1rem;
    border-left: 1px solid var(--section-border);
    border-right: 1px solid var(--section-border);
    line-height: 36px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 1rem;
    background: var(--text-color);
    color: var(--bg-color);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.add-to-cart-btn:hover:not(:disabled) {
    opacity: 0.9;
    transform: translateY(-1px);
}

.add-to-cart-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .dialog-body {
        flex-direction: column;
        padding: 1rem;
    }

    .dialog-image {
        width: 100%;
    }
}

/* Checkout Modal Styles */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.checkout-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 3001;
}

.checkout-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: var(--bg-color);
    border-radius: 12px;
    padding: 2rem;
    z-index: 3002;
    overflow-y: auto;
    box-shadow: 0 4px 20px var(--shadow-color);
}

.checkout-dialog::backdrop {
    background: rgba(0, 0, 0, 0.85);
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
}

.form-section {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px var(--shadow-color);
}

.form-section h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--section-border);
    border-radius: 6px;
    background: var(--bg-color);
    color: var(--text-color);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
}

.order-summary {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px var(--shadow-color);
}

.order-items {
    margin: 1rem 0;
}

.order-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--section-border);
}

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.order-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.item-name {
    font-weight: 500;
}

.item-variant,
.item-quantity {
    font-size: 0.9rem;
    color: var(--footer-text);
}

.order-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--section-border);
    text-align: right;
    font-size: 1.2rem;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkout-form {
        padding: 0.5rem;
        gap: 1rem;
    }
    
    .form-section {
        padding: 1rem;
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 2000;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
