/* WooCommerce Custom Styles for Guineeshopping */

.woocommerce-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.marketplace-assurance-card,
.checkout-intro-card,
.account-dashboard-card {
  margin: 18px 0 22px;
  padding: 24px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(17, 60, 93, 0.08);
}

.marketplace-assurance-card h2,
.checkout-intro-card h2,
.account-dashboard-card h2 {
  margin: 12px 0 0;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.marketplace-assurance-card p,
.checkout-intro-card p,
.account-dashboard-card p {
  color: #64616f;
}

.assurance-grid,
.checkout-feature-list,
.account-dashboard-points {
  display: grid;
  gap: 16px;
}

.assurance-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.assurance-grid article,
.checkout-feature-list span,
.account-dashboard-points span {
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(17, 31, 36, 0.08);
  border-radius: 18px;
}

.assurance-grid article strong,
.checkout-feature-list span,
.account-dashboard-points span {
  display: block;
  font-weight: 800;
}

.assurance-grid article p {
  margin: 8px 0 0;
}

.checkout-intro-card,
.account-dashboard-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.checkout-feature-list span,
.account-dashboard-points span {
  color: #113c5d;
}

.single-product .marketplace-assurance-card {
  margin-top: 28px;
}

.cart-assurance-card {
  margin-top: 26px;
}

.woocommerce-breadcrumb,
.woocommerce-notices-wrapper,
.woocommerce-result-count,
.woocommerce-ordering,
.woocommerce-products-header,
.woocommerce-tabs,
.related.products,
.upsells.products,
.cart-collaterals,
.woocommerce-checkout-review-order,
.woocommerce-form-coupon-toggle,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content,
.woocommerce form.checkout,
.woocommerce-account .addresses,
.woocommerce .woocommerce-customer-details,
.woocommerce table.shop_table,
.woocommerce form.login,
.woocommerce form.register {
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(17, 60, 93, 0.08);
}

.woocommerce-breadcrumb,
.woocommerce-result-count,
.woocommerce-ordering,
.woocommerce-form-coupon-toggle {
  padding: 14px 18px;
  margin-bottom: 16px;
}

.woocommerce-notices-wrapper,
.woocommerce-tabs,
.related.products,
.upsells.products,
.cart-collaterals,
.woocommerce-checkout-review-order,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content,
.woocommerce form.checkout,
.woocommerce-account .addresses,
.woocommerce .woocommerce-customer-details,
.woocommerce table.shop_table,
.woocommerce form.login,
.woocommerce form.register {
  padding: 24px;
}

/* Product Grid */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product {
  background: rgba(255, 253, 248, 0.92);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(17, 60, 93, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(17, 60, 93, 0.12);
}

.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: #ca5f12;
  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: normal;
}

.product-vendor a {
  color: #113c5d;
  font-weight: 700;
}

/* Add to Cart Button */
.product .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #f07c24 0%, #ffab46 100%);
  color: white;
  border: none;
  border-radius: 999px;
  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, #ca5f12 0%, #f07c24 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(240, 124, 36, 0.24);
}

/* 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 div.product {
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(17, 60, 93, 0.08);
  padding: 1rem;
}

.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: #ca5f12;
  margin-bottom: 2rem;
}

.single-product .single_add_to_cart_button {
  background: linear-gradient(135deg, #f07c24 0%, #ffab46 100%);
  color: white;
  border: none;
  border-radius: 999px;
  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, #ca5f12 0%, #f07c24 100%);
  transform: translateY(-2px);
}

.single-product .woocommerce-product-gallery,
.single-product .summary.entry-summary,
.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce .quantity .qty,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  border-radius: 18px;
}

/* 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: rgba(255, 253, 248, 0.92);
  border-radius: 24px;
  padding: 2rem;
  margin-top: 2rem;
}

.cart_totals h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.checkout-button {
  background: linear-gradient(135deg, #f07c24 0%, #ffab46 100%);
  color: white;
  border: none;
  border-radius: 999px;
  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, #ca5f12 0%, #f07c24 100%);
  transform: translateY(-2px);
}

/* Shop Page */
.woocommerce-products-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 28px;
}

.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.75rem 1rem;
  border: 1px solid rgba(17, 31, 36, 0.12);
  border-radius: 14px;
  background: white;
  font-size: 0.9rem;
}

.woocommerce .quantity .qty,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  border: 1px solid rgba(17, 31, 36, 0.12);
  background: #fff;
  padding: 0.85rem 1rem;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  border-radius: 18px;
  border: 0;
}

.woocommerce-message {
  background: rgba(28, 139, 99, 0.12);
}

.woocommerce-info {
  background: rgba(17, 60, 93, 0.1);
}

.woocommerce-error {
  background: rgba(203, 70, 53, 0.12);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  color: #113c5d;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  background: rgba(240, 124, 36, 0.12);
  color: #ca5f12;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  margin-bottom: 18px;
}

.woocommerce-account .woocommerce-MyAccount-content > :first-child {
  margin-top: 0;
}

/* 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: #f07c24;
  color: white;
  border-color: #f07c24;
}

/* Responsive Design */
@media (max-width: 768px) {
  .products {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }

  .assurance-grid,
  .checkout-intro-card,
  .account-dashboard-card {
    grid-template-columns: 1fr;
  }

  .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