/* WooCommerce Custom Styles for Guineeshopping */

.woocommerce-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Product Grid */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product:hover .product-image-wrapper img {
  transform: scale(1.05);
}

/* Product Info */
.product .woocommerce-loop-product__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 1rem 1rem 0.5rem;
  line-height: 1.4;
}

.product .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #059669;
  margin: 0 1rem;
}

.product .price del {
  color: #9ca3af;
  font-weight: 400;
  margin-right: 0.5rem;
}

.product-excerpt {
  margin: 0.5rem 1rem;
  color: #6b7280;
  line-height: 1.5;
}

.product-vendor {
  margin: 0.25rem 1rem 1rem;
  font-style: italic;
}

/* Add to Cart Button */
.product .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 1rem;
  width: calc(100% - 2rem);
}

.product .button:hover {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Single Product Page */
.single-product .product {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.single-product .product-images {
  flex: 1;
}

.single-product .product-summary {
  flex: 1;
  padding: 2rem;
}

.single-product .product_title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1rem;
}

.single-product .price {
  font-size: 2rem;
  font-weight: 700;
  color: #059669;
  margin-bottom: 2rem;
}

.single-product .single_add_to_cart_button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 2rem;
}

.single-product .single_add_to_cart_button:hover {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
  transform: translateY(-2px);
}

/* Cart & Checkout */
.woocommerce-cart .cart_item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.woocommerce-cart .cart_item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.woocommerce-cart .product-name a {
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
}

.woocommerce-cart .product-name a:hover {
  color: #667eea;
}

.cart_totals {
  background: #f9fafb;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}

.cart_totals h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.checkout-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.checkout-button:hover {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
  transform: translateY(-2px);
}

/* Shop Page */
.woocommerce-products-header {
  text-align: center;
  margin-bottom: 3rem;
}

.woocommerce-products-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1rem;
}

.woocommerce-result-count {
  color: #6b7280;
  margin-bottom: 1rem;
}

.woocommerce-ordering {
  margin-bottom: 2rem;
}

.woocommerce-ordering select {
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: white;
  font-size: 0.9rem;
}

/* Pagination */
.woocommerce-pagination {
  margin-top: 3rem;
  text-align: center;
}

.woocommerce-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 0.25rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  text-decoration: none;
  color: #6b7280;
  transition: all 0.3s ease;
}

.woocommerce-pagination .page-numbers:hover,
.woocommerce-pagination .page-numbers.current {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
  .products {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }

  .single-product .product {
    flex-direction: column;
  }

  .single-product .product_title {
    font-size: 2rem;
  }

  .woocommerce-products-header h1 {
    font-size: 2rem;
  }
}</content>
<parameter name="filePath">c:\Users\banou\Projects\Guineeshopping\wp-content\themes\guineeshopping\woocommerce.css