/**
 * ORONEWLIFE - Estilos Customizados para Integração
 */

/* Arista Pro Font */
@font-face {
  font-family: 'Arista Pro';
  src: url('../fonts/Arista-Pro-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

.main-logo-text {
  font-family: 'Arista Pro', 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #1a3a1a;
  text-decoration: none;
}

/* Corrigir overflow que corta a imagem do produto em todos os níveis e breakpoints */
.section.benefit,
.section.benefit.inner,
.benefit-content-wrap,
.benefit-section-wrap,
.benefit-hand-wrap,
.benefit-circle-wrap,
.benefit-circle-inner,
.benefit-circle-wrap::before,
.benefit-circle-inner::before {
  overflow: visible !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
}

/* Seção de benefícios - Manter posicionamento original do Webflow */
/* .benefit-section-wrap já tem position: relative e max-width: 1920px no CSS do Webflow */
/* .benefit-hand-wrap já tem position: absolute e inset correto no CSS do Webflow */
/* .benefit-medicine-box já tem position: absolute e inset: -24% auto auto 18% no CSS do Webflow */
/* NÃO sobrescrever essas propriedades para manter consistência entre resoluções */

/* Aumentar imagem de fundo da seção de benefícios (flor de lótus) */
.benefit-bg-image {
  transform: scale(1.15);
  transform-origin: center center;
}

/* Garantir que os overrides funcionem em todos os breakpoints */
@media screen and (max-width: 991px) {
  .section.benefit,
  .section.benefit.inner,
  .benefit-content-wrap,
  .benefit-section-wrap,
  .benefit-hand-wrap,
  .benefit-circle-wrap,
  .benefit-circle-inner {
    overflow: visible !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
  }
}

@media screen and (max-width: 767px) {
  .section.benefit,
  .section.benefit.inner,
  .benefit-content-wrap,
  .benefit-section-wrap,
  .benefit-hand-wrap,
  .benefit-circle-wrap,
  .benefit-circle-inner {
    overflow: visible !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
  }
}

@media screen and (max-width: 479px) {
  .section.benefit,
  .section.benefit.inner,
  .benefit-content-wrap,
  .benefit-section-wrap,
  .benefit-hand-wrap,
  .benefit-circle-wrap,
  .benefit-circle-inner {
    overflow: visible !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
  }
}


/* Toast Notifications */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  min-width: 300px;
  max-width: 400px;
  padding: 16px 20px;
  border-radius: 8px;
  background: #1a1a1a;
  color: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: translateX(120%);
  transition: transform 0.3s ease;
}

.toast.show {
  transform: translateX(0);
}

.toast-success {
  background: linear-gradient(135deg, #10b981, #059669);
}

.toast-error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.toast-warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.toast-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.toast-message {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

.toast-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.toast-close:hover {
  opacity: 1;
}

/* Global Loader */
#global-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #1a1a1a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: white;
  border-radius: 12px;
  padding: 40px;
  max-width: 450px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s;
}

.modal-overlay.show .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #1a1a1a;
}

.modal-title {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 24px 0;
  color: #1a1a1a;
}

/* Auth Form Styles */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.form-group input {
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.form-button {
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.form-button.primary {
  background: #1a1a1a;
  color: white;
}

.form-button.primary:hover {
  background: #333;
  transform: translateY(-1px);
}

.form-links {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.form-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.form-links a:hover {
  color: #1a1a1a;
  text-decoration: underline;
}

/* Product Card Styles */
.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card-link {
  text-decoration: none;
  color: inherit;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto !important;
  min-height: 280px;
}

.product-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  transition: transform 0.3s;
}

/* Shop Page Product Grid Improvements */
.section.products .product-image-wrap {
  height: auto !important;
  min-height: 300px;
  padding: 20px;
  background: transparent;
}

.section.products .product-image {
  max-height: 300px;
  object-fit: contain;
}

.single-product-wrap .product-image-wrap {
  overflow: visible;
  height: auto !important;
  min-height: 250px;
}

.single-product-wrap .product-image {
  max-width: 100%;
  max-height: 280px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.product-info {
  padding: 20px;
}

.product-name {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #1a1a1a;
}

.product-description {
  font-size: 14px;
  color: #666;
  margin: 0 0 12px 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-original-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}

.add-to-cart-btn {
  width: 100%;
  padding: 14px;
  background: #1a1a1a;
  color: white;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.add-to-cart-btn:hover {
  background: #333;
}

/* Cart Item Styles */
.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
}

.cart-item-price {
  font-size: 14px;
  color: #666;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.qty-btn:hover {
  background: #f5f5f5;
  border-color: #1a1a1a;
}

.qty-value {
  font-size: 14px;
  min-width: 24px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: #ef4444;
}

/* Blog Card Styles */
.blog-card {
  display: block;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-image-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
}

.blog-category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #666;
  letter-spacing: 0.5px;
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
  margin: 8px 0;
  color: #1a1a1a;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 14px;
  color: #666;
  margin: 0 0 12px 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-date {
  font-size: 12px;
  color: #999;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* Home Products Grid - Centralizado */
.product-collection-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.product-grid-wrap {
  justify-content: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* User Menu */
.user-menu {
  position: relative;
}

.user-menu-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  padding: 8px 0;
  display: none;
}

.user-menu:hover .user-menu-dropdown {
  display: block;
}

.user-menu-item {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: background 0.2s;
}

.user-menu-item:hover {
  background: #f5f5f5;
}

/* Responsive */
@media (max-width: 768px) {
  .modal-container {
    padding: 24px;
    margin: 16px;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .toast {
    left: 20px;
    right: 20px;
    max-width: none;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Payment Methods */
.payment-methods-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.payment-method {
  flex: 1;
  min-width: 120px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.payment-method:hover {
  border-color: #999;
}

.payment-method.selected {
  border-color: #1a1a1a;
  background: #f8f8f8;
}

.payment-method input[type="radio"] {
  display: none;
}

.payment-icon {
  flex-shrink: 0;
}

.payment-name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.card-element-container {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  margin-top: 16px;
}

#card-element {
  padding: 12px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}

.card-errors {
  color: #ef4444;
  font-size: 13px;
  margin-top: 8px;
}

/* Shipping Options */
.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.shipping-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.shipping-option:hover {
  border-color: #999;
}

.shipping-option.selected {
  border-color: #1a1a1a;
  background: #f8f8f8;
}

.shipping-option input[type="radio"] {
  display: none;
}

.shipping-option-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shipping-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.shipping-time {
  font-size: 12px;
  color: #666;
}

.shipping-price {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

/* Checkout Summary */
.checkout-summary {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 24px;
}

.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.checkout-item {
  display: flex;
  gap: 12px;
}

.checkout-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.checkout-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-item-qty {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #1a1a1a;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.checkout-item-name {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}

.checkout-item-price {
  font-size: 14px;
  color: #666;
}

.checkout-totals {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
}

.checkout-line.discount {
  color: #22c55e;
}

.checkout-line.total {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
}

.checkout-coupon {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.checkout-coupon input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
}

.checkout-coupon input:focus {
  outline: none;
  border-color: #1a1a1a;
}

.coupon-btn {
  padding: 12px 20px;
  background: white;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.coupon-btn:hover {
  background: #1a1a1a;
  color: white;
}

.checkout-submit-btn {
  width: 100%;
  cursor: pointer;
}

/* PIX Modal */
.pix-content {
  text-align: center;
}

.pix-qrcode {
  margin: 20px 0;
}

.pix-qrcode img {
  max-width: 200px;
  border-radius: 8px;
}

.pix-info {
  text-align: center;
}

.pix-code-container {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.pix-code-container input {
  flex: 1;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 12px;
  font-family: monospace;
}

.copy-pix-btn {
  padding: 12px 20px;
  background: #1a1a1a;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

.copy-pix-btn:hover {
  background: #333;
}

.pix-timer {
  font-size: 12px;
  color: #666;
  margin-top: 12px;
}

/* Order Confirmation */
.order-confirmation-content {
  text-align: center;
  padding: 40px 20px;
}

.order-success-icon {
  margin-bottom: 24px;
}

.order-success-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.order-number {
  font-size: 16px;
  color: #666;
  margin-bottom: 32px;
}

.order-details {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.order-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

.order-detail-row:last-child {
  border-bottom: none;
}

.order-status {
  font-weight: 600;
}

.order-status.paid {
  color: #22c55e;
}

.order-status.pending {
  color: #f59e0b;
}

.order-status.shipped {
  color: #3b82f6;
}

.order-actions {
  display: flex;
  justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  .payment-methods {
    flex-direction: column;
  }
  
  .payment-method {
    min-width: auto;
  }
  
  .checkout-coupon {
    flex-direction: column;
  }
}

/* ========================================
   SHOP PAGE - Product Cards Enhanced
   ======================================== */

/* Product Badges Container - posicionado no canto superior esquerdo */
.product-badges-container {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  z-index: 10;
}

/* Manter single-product-wrap com posição relativa */
.single-product-wrap {
  position: relative !important;
  overflow: visible !important;
}

/* Individual Badge Styles */
.product-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.product-badge-new {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  animation: pulse-badge 2s infinite;
}

.product-badge-featured {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
}

.product-badge-discount {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Product Rating */
.product-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 6px 0;
  font-size: 13px;
}

.product-stars {
  color: #fbbf24;
  letter-spacing: 1px;
  font-size: 14px;
}

.product-reviews {
  color: #6b7280;
  font-size: 12px;
}

/* Original Price (strikethrough) */
.product-original-price {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 12px;
  margin-right: 6px;
}

/* Stock Warning */
.product-stock-warning {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin: 6px 0;
  text-align: center;
  animation: pulse-stock 1.5s infinite;
}

@keyframes pulse-stock {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Enhanced Product Card */
.product-content-wrap {
  position: relative;
}

/* Product details wrap - center all content */
.product-details-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* Product name centered */
.product-name-wrap {
  display: block;
  text-align: center;
  width: 100%;
}

/* Efeito de brilho para produtos em destaque */
.product-name-featured {
  background: linear-gradient(
    90deg,
    #183506 0%,
    #183506 40%,
    #ffd700 50%,
    #183506 60%,
    #183506 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine-text 3s infinite linear;
}

@keyframes shine-text {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

/* Ensure info text styling */
.product-info-text {
  color: #183506;
  font-weight: 500;
  font-size: 13px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-badges {
    top: 8px;
    left: 8px;
  }
  
  .product-badge {
    padding: 3px 8px;
    font-size: 10px;
  }
  
  .product-rating {
    flex-wrap: wrap;
  }
  
  .product-stars {
    font-size: 12px;
  }
}

/* =========================================
   ACCOUNT PAGE STYLES
   ========================================= */

.account-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.account-header {
  margin-bottom: 40px;
}

.account-title {
  font-size: 32px;
  font-weight: 700;
  color: #183506;
  margin-bottom: 10px;
}

.account-subtitle {
  color: #6A7166;
  font-size: 16px;
}

.account-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.account-card .card-title {
  font-size: 20px;
  font-weight: 600;
  color: #183506;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-card .card-title svg {
  width: 24px;
  height: 24px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.info-item {
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.info-label {
  font-size: 12px;
  color: #6A7166;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.info-value {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.account-nav {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.nav-tab {
  padding: 12px 24px;
  background: #f2f2f2;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-tab:hover,
.nav-tab.active,
.nav-tab.w--current {
  background: #183506;
  color: white;
}

.edit-btn {
  background: #183506;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}

.edit-btn:hover {
  background: #0f2504;
}

.loading-spinner {
  display: flex;
  justify-content: center;
  padding: 40px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f2f2f2;
  border-top-color: #183506;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.not-logged-in {
  text-align: center;
  padding: 60px 20px;
}

.not-logged-in h2 {
  color: #183506;
  margin-bottom: 15px;
}

.not-logged-in p {
  color: #6A7166;
  margin-bottom: 25px;
}

.login-link {
  display: inline-block;
  background: #183506;
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.login-link:hover {
  background: #0f2504;
}

/* =========================================
   ORDERS PAGE STYLES
   ========================================= */

.orders-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.order-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.order-number {
  font-size: 18px;
  font-weight: 600;
  color: #183506;
}

.order-status {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.order-status.pending {
  background: #fef3c7;
  color: #92400e;
}

.order-status.processing {
  background: #dbeafe;
  color: #1e40af;
}

.order-status.shipped {
  background: #d1fae5;
  color: #065f46;
}

.order-status.delivered {
  background: #dcfce7;
  color: #166534;
}

.order-status.cancelled {
  background: #fee2e2;
  color: #991b1b;
}

.order-date {
  color: #6A7166;
  font-size: 14px;
}

.order-items {
  border-top: 1px solid #e5e7eb;
  padding-top: 15px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.order-item-name {
  color: #333;
}

.order-item-qty {
  color: #6A7166;
}

.order-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e5e7eb;
  padding-top: 15px;
  margin-top: 15px;
  font-weight: 600;
  font-size: 16px;
}

.empty-orders {
  text-align: center;
  padding: 60px 20px;
}

.empty-orders h3 {
  color: #183506;
  margin-bottom: 10px;
}

.empty-orders p {
  color: #6A7166;
  margin-bottom: 20px;
}

.shop-link {
  display: inline-block;
  background: #183506;
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.shop-link:hover {
  background: #0f2504;
}
