/* Order Detail Styles */
:root {
    --ec-primary: #e53935;
    --ec-primary-dark: #c62828;
    --ec-primary-light: #ffcdd2;
    --ec-secondary: #f5f5f5;
    --ec-dark: #212121;
    --ec-light: #ffffff;
    --ec-gray: #757575;
    --ec-gray-light: #e0e0e0;
    --ec-success: #4caf50;
    --ec-warning: #ff9800;
    --ec-danger: #f44336;
    --ec-border-radius: 4px;
    --ec-shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --ec-shadow: 0 2px 5px rgba(0,0,0,0.1);
    --ec-shadow-lg: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .ec-order-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .ec-order-header {
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--ec-gray-light);
    margin-bottom: 30px;
  }
  
  .ec-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--ec-primary);
    margin-bottom: 20px;
  }
  
  .ec-logo a {
    color: inherit;
    text-decoration: none;
  }
  
  .ec-order-header h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--ec-dark);
  }
  
  .ec-order-subtitle {
    font-size: 18px;
    color: var(--ec-gray);
  }
  
  .ec-order-alert {
    display: flex;
    align-items: center;
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 15px 20px;
    border-radius: var(--ec-border-radius);
    margin-bottom: 30px;
  }
  
  .ec-order-alert i {
    font-size: 24px;
    margin-right: 15px;
  }
  
  .ec-order-alert p {
    margin: 0;
  }
  
  .ec-order-main {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .ec-order-details {
    flex: 2;
  }
  
  .ec-order-sidebar {
    flex: 1;
  }
  
  .ec-order-card {
    background-color: var(--ec-light);
    border-radius: var(--ec-border-radius);
    box-shadow: var(--ec-shadow);
    margin-bottom: 30px;
  }
  
  .ec-card-header {
    padding: 20px;
    border-bottom: 1px solid var(--ec-gray-light);
  }
  
  .ec-card-header h2 {
    font-size: 18px;
    color: var(--ec-dark);
  }
  
  .ec-card-body {
    padding: 20px;
  }
  
  .ec-info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
  }
  
  .ec-info-row:last-child {
    margin-bottom: 0;
  }
  
  .ec-status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
  }
  
  .ec-status-pending {
    background-color: #fff3e0;
    color: #e65100;
  }
  
  .ec-status-processing {
    background-color: #e3f2fd;
    color: #1565c0;
  }
  
  .ec-status-completed {
    background-color: #e8f5e9;
    color: #2e7d32;
  }
  
  .ec-status-cancelled {
    background-color: #ffebee;
    color: #c62828;
  }
  
  .ec-order-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .ec-order-table th,
  .ec-order-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--ec-gray-light);
  }
  
  .ec-order-table th {
    font-weight: 500;
    color: var(--ec-gray);
  }
  
  .ec-order-table tfoot td {
    padding: 15px;
    font-weight: 500;
  }
  
  .ec-order-total td {
    font-weight: 600;
    font-size: 16px;
    color: var(--ec-primary);
  }
  
  .ec-order-product {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .ec-product-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }
  
  .ec-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .ec-product-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--ec-dark);
  }
  
  .ec-product-info p {
    font-size: 14px;
    color: var(--ec-gray);
  }
  
  .ec-shipping-info p {
    margin-bottom: 10px;
  }
  
  .ec-shipping-info p:last-child {
    margin-bottom: 0;
  }
  
  .ec-payment-info {
    margin-bottom: 20px;
  }
  
  .ec-payment-instructions {
    background-color: var(--ec-secondary);
    padding: 15px;
    border-radius: var(--ec-border-radius);
  }
  
  .ec-payment-instructions h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .ec-payment-instructions p {
    margin-bottom: 10px;
    font-size: 14px;
  }
  
  .ec-payment-status {
    color: var(--ec-success);
    font-weight: 500;
  }
  
  .ec-order-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .ec-btn {
    padding: 12px 20px;
    border-radius: var(--ec-border-radius);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-align: center;
    text-decoration: none;
  }
  
  .ec-btn-primary {
    background-color: var(--ec-primary);
    color: var(--ec-light);
  }
  
  .ec-btn-primary:hover {
    background-color: var(--ec-primary-dark);
  }
  
  .ec-btn-secondary {
    background-color: transparent;
    color: var(--ec-primary);
    border: 1px solid var(--ec-primary);
  }
  
  .ec-btn-secondary:hover {
    background-color: rgba(229, 57, 53, 0.1);
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .ec-order-main {
      flex-direction: column;
    }
    
    .ec-order-table {
      display: block;
      overflow-x: auto;
    }
    
    .ec-order-product {
      flex-direction: column;
      align-items: flex-start;
    }
  }


  
/* social media */
.pdp-social-sharing {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.pdp-share-title {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.pdp-share-buttons {
    display: flex;
    gap: 10px;
}

.pdp-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.2s;
}

.pdp-share-btn:hover {
    transform: scale(1.1);
}

.facebook { background-color: #3b5998; }
.twitter { background-color: #1da1f2; }
.linkedin { background-color: #0077b5; }
.whatsapp { background-color: #25d366; }
.telegram { background-color: #0088cc; }
.email { background-color: #777; }

.pdp-share-btn i {
    font-size: 14px;
}
