/* Dokan Multi-Vendor Custom Styles for Guineeshopping */

/* Vendor Store Header */
.vendor-store-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  margin-bottom: 2rem;
}

.vendor-store-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.vendor-avatar img {
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.vendor-info h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.vendor-info p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.vendor-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vendor-rating .star-rating {
  color: #fbbf24;
}

/* Vendor Dashboard */
.dokan-dashboard-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.dokan-dashboard-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.dokan-dashboard-menu {
  background: #f9fafb;
  border-right: 1px solid #e5e7eb;
  padding: 2rem 0;
}

.dokan-dashboard-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dokan-dashboard-menu li {
  margin-bottom: 0.5rem;
}

.dokan-dashboard-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 0 8px 8px 0;
  margin-right: 1rem;
}

.dokan-dashboard-menu a:hover,
.dokan-dashboard-menu a.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.dokan-dashboard-menu .icon {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

.dokan-dashboard-menu a:hover .icon,
.dokan-dashboard-menu a.active .icon {
  opacity: 1;
}

/* Dashboard Content */
.dokan-dashboard-content-area {
  padding: 2rem;
}

.dashboard-widget {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.dashboard-widget h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dashboard-widget .icon {
  color: #667eea;
}

/* Stats Cards */
.dokan-dashboard .stats-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stat-card h4 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-card p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

/* Product Management */
.dokan-product-listing {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.dokan-product-listing-header {
  background: #f9fafb;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.dokan-product-listing-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.product-listing-table {
  width: 100%;
}

.product-listing-table th,
.product-listing-table td {
  padding: 1rem 2rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.product-listing-table th {
  background: #f9fafb;
  font-weight: 600;
  color: #374151;
}

.product-listing-table .product-thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.product-listing-table .product-title a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
}

.product-listing-table .product-title a:hover {
  color: #667eea;
}

.product-status {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.product-status.publish {
  background: #d1fae5;
  color: #065f46;
}

.product-status.pending {
  background: #fef3c7;
  color: #92400e;
}

.product-status.draft {
  background: #e5e7eb;
  color: #374151;
}

/* Add Product Form */
.dokan-add-product-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-top: 2rem;
}

.dokan-add-product-content .dokan-form-group {
  margin-bottom: 2rem;
}

.dokan-add-product-content label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.dokan-add-product-content input[type="text"],
.dokan-add-product-content input[type="number"],
.dokan-add-product-content textarea,
.dokan-add-product-content select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.dokan-add-product-content input:focus,
.dokan-add-product-content textarea:focus,
.dokan-add-product-content select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.dokan-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dokan-btn:hover {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
  transform: translateY(-2px);
}

/* Vendor Registration */
.dokan-vendor-register {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 3rem;
}

.dokan-vendor-register h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1f2937;
  text-align: center;
  margin-bottom: 2rem;
}

.dokan-vendor-register .form-row {
  margin-bottom: 1.5rem;
}

.dokan-vendor-register label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.dokan-vendor-register input,
.dokan-vendor-register textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
}

.dokan-vendor-register input:focus,
.dokan-vendor-register textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Store Settings */
.dokan-settings-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.dokan-settings-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
}

.settings-field {
  margin-bottom: 2rem;
}

.settings-field label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.settings-field input[type="text"],
.settings-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
}

/* Vendor Store Page */
.dokan-single-store {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.store-header {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
}

.store-info {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.store-avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #f3f4f6;
}

.store-details h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.store-details p {
  color: #6b7280;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .dokan-dashboard-wrap {
    flex-direction: column;
  }

  .dokan-dashboard-menu {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
  }

  .dokan-dashboard-menu ul {
    display: flex;
    overflow-x: auto;
    padding: 0 1rem;
  }

  .dokan-dashboard-menu li {
    margin-bottom: 0;
    margin-right: 1rem;
  }

  .dokan-dashboard-menu a {
    padding: 0.5rem 1rem;
    margin-right: 0;
    white-space: nowrap;
  }

  .store-info {
    flex-direction: column;
    text-align: center;
  }

  .vendor-store-header .container {
    padding: 1rem;
  }

  .vendor-info h1 {
    font-size: 1.5rem;
  }
}</content>
<parameter name="filePath">c:\Users\banou\Projects\Guineeshopping\wp-content\themes\guineeshopping\dokan.css