/* ================================================================
   COMBICEREMONIE — Premium WooCommerce Overrides
   Inspired by: Sézane, Maje, Pronovias
   ================================================================ */

/* === GLOBAL === */
body {
  font-family: 'DM Sans', sans-serif !important;
  color: #1A1A1A !important;
  background: #FDFBF9 !important;
}

/* === HIDE SHOPTIMIZER DEFAULTS WE REPLACE ON HOMEPAGE === */
.page-id-28155 .site-header,
.page-id-28155 .below-header,
.page-id-28155 .announcement-bar,
.page-id-28155 .site-footer {
  display: none !important;
}

/* === SHOP PAGE === */
.woocommerce .products {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
}
@media(min-width:768px) {
  .woocommerce .products {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
  }
}
@media(min-width:1024px) {
  .woocommerce .products {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 28px !important;
  }
}

/* Product Cards */
.woocommerce ul.products li.product {
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  border: none !important;
  background: transparent !important;
}

.woocommerce ul.products li.product a img {
  border-radius: 6px !important;
  aspect-ratio: 3/4 !important;
  object-fit: cover !important;
  width: 100% !important;
  margin-bottom: 12px !important;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1) !important;
}
.woocommerce ul.products li.product:hover a img {
  transform: scale(1.03) !important;
}

/* Product Title */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #1A1A1A !important;
  padding: 0 !important;
  margin-bottom: 4px !important;
  text-transform: none !important;
}

/* Price */
.woocommerce ul.products li.product .price {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #8B6F4E !important;
}
.woocommerce ul.products li.product .price del {
  color: #B0A89E !important;
  font-weight: 300 !important;
  font-size: 12px !important;
}
.woocommerce ul.products li.product .price ins {
  text-decoration: none !important;
  font-weight: 500 !important;
}

/* Hide Add to Cart button on grid (Sézane style) */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
  display: none !important;
}

/* Hide star ratings on grid */
.woocommerce ul.products li.product .star-rating {
  display: none !important;
}

/* Hide on-sale badge on grid */
.woocommerce ul.products li.product .onsale {
  display: none !important;
}

/* Category label on cards */
.woocommerce ul.products li.product .shoptimizer-category {
  font-size: 10px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #C4A882 !important;
  font-weight: 400 !important;
  margin-bottom: 4px !important;
}

/* === SINGLE PRODUCT PAGE === */
.single-product .product {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 40px 20px !important;
}
@media(min-width:768px) {
  .single-product .product {
    padding: 60px 40px !important;
  }
}

/* Product images */
.single-product .woocommerce-product-gallery {
  border-radius: 8px !important;
  overflow: hidden !important;
}
.single-product .woocommerce-product-gallery img {
  border-radius: 8px !important;
}

/* Product title */
.single-product .product_title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 32px !important;
  font-weight: 400 !important;
  color: #1A1A1A !important;
  margin-bottom: 8px !important;
}
@media(min-width:768px) {
  .single-product .product_title {
    font-size: 38px !important;
  }
}

/* Price on product page */
.single-product .price {
  font-size: 20px !important;
  font-weight: 500 !important;
  color: #8B6F4E !important;
  margin-bottom: 20px !important;
}
.single-product .price del {
  color: #B0A89E !important;
  font-weight: 300 !important;
}

/* Short description */
.single-product .woocommerce-product-details__short-description {
  font-size: 14px !important;
  line-height: 1.8 !important;
  color: #4A4440 !important;
  font-weight: 300 !important;
  margin-bottom: 24px !important;
  padding-bottom: 24px !important;
  border-bottom: 1px solid rgba(0,0,0,0.06) !important;
}

/* Add to cart button */
.single-product .single_add_to_cart_button,
.single-product button.single_add_to_cart_button {
  background: #1A1A1A !important;
  color: #F5F0EB !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 16px 40px !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 400 !important;
  transition: background 0.3s ease !important;
  width: 100% !important;
}
.single-product .single_add_to_cart_button:hover {
  background: #333 !important;
}

/* Quantity input */
.single-product .quantity input.qty {
  border: 1px solid #C4B5A8 !important;
  border-radius: 0 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  padding: 12px !important;
  text-align: center !important;
}

/* Tabs */
.single-product .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
  margin-bottom: 24px !important;
  padding: 0 !important;
}
.single-product .woocommerce-tabs ul.tabs li a {
  font-size: 11px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
  color: #8B8078 !important;
  padding: 12px 20px !important;
}
.single-product .woocommerce-tabs ul.tabs li.active a {
  color: #1A1A1A !important;
  border-bottom: 2px solid #C4A882 !important;
}

/* Related products */
.single-product .related.products h2,
.single-product .upsells.products h2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 28px !important;
  font-weight: 300 !important;
  margin-bottom: 24px !important;
}

/* Star rating on single */
.single-product .star-rating {
  display: none !important;
}

/* Meta (SKU, category, tags) */
.single-product .product_meta {
  font-size: 12px !important;
  color: #8B8078 !important;
  border-top: 1px solid rgba(0,0,0,0.06) !important;
  padding-top: 16px !important;
  margin-top: 24px !important;
}
.single-product .product_meta a {
  color: #8B6F4E !important;
}

/* Breadcrumbs */
.woocommerce .woocommerce-breadcrumb {
  font-size: 11px !important;
  letter-spacing: 1px !important;
  color: #8B8078 !important;
  margin-bottom: 20px !important;
  padding: 16px 0 !important;
  text-transform: uppercase !important;
}
.woocommerce .woocommerce-breadcrumb a {
  color: #8B8078 !important;
}
.woocommerce .woocommerce-breadcrumb a:hover {
  color: #C4A882 !important;
}

/* === CART PAGE === */
.woocommerce-cart .woocommerce {
  max-width: 1000px !important;
  margin: 0 auto !important;
  padding: 40px 20px !important;
}

.woocommerce-cart .shop_table {
  border: none !important;
  border-collapse: separate !important;
  border-spacing: 0 12px !important;
}
.woocommerce-cart .shop_table th {
  font-size: 11px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  color: #8B8078 !important;
  border: none !important;
  padding: 12px 16px !important;
}
.woocommerce-cart .shop_table td {
  border: none !important;
  padding: 16px !important;
  vertical-align: middle !important;
  background: #fff !important;
  font-size: 13px !important;
}
.woocommerce-cart .shop_table td:first-child {
  border-radius: 8px 0 0 8px !important;
}
.woocommerce-cart .shop_table td:last-child {
  border-radius: 0 8px 8px 0 !important;
}

/* Cart product image */
.woocommerce-cart .shop_table td.product-thumbnail img {
  border-radius: 6px !important;
  width: 80px !important;
  height: 100px !important;
  object-fit: cover !important;
}

/* Cart product name */
.woocommerce-cart .shop_table td.product-name a {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #1A1A1A !important;
}

/* Cart totals */
.woocommerce-cart .cart_totals {
  background: #fff !important;
  border-radius: 12px !important;
  padding: 28px !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
}
.woocommerce-cart .cart_totals h2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  margin-bottom: 20px !important;
}
.woocommerce-cart .cart_totals table th {
  font-size: 12px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  color: #8B8078 !important;
}

/* Cart checkout button */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background: #1A1A1A !important;
  color: #F5F0EB !important;
  border-radius: 0 !important;
  padding: 16px !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 400 !important;
  transition: background 0.3s ease !important;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background: #333 !important;
}

/* Coupon */
.woocommerce-cart .coupon input {
  border: 1px solid #C4B5A8 !important;
  border-radius: 0 !important;
  padding: 12px 16px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
}
.woocommerce-cart .coupon button {
  background: transparent !important;
  color: #1A1A1A !important;
  border: 1px solid #1A1A1A !important;
  border-radius: 0 !important;
  padding: 12px 20px !important;
  font-size: 11px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-family: 'DM Sans', sans-serif !important;
}

/* === CHECKOUT PAGE === */
.woocommerce-checkout .woocommerce {
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 40px 20px !important;
}

/* Checkout title */
.woocommerce-checkout h3 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  margin-bottom: 20px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(0,0,0,0.06) !important;
}

/* Form fields */
.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
  border: 1px solid #C4B5A8 !important;
  border-radius: 0 !important;
  padding: 14px 16px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  background: #fff !important;
  transition: border-color 0.3s ease !important;
}
.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
  border-color: #8B6F4E !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Labels */
.woocommerce-checkout .form-row label {
  font-size: 11px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  color: #4A4440 !important;
  margin-bottom: 6px !important;
}

/* Order review */
.woocommerce-checkout #order_review {
  background: #fff !important;
  border-radius: 12px !important;
  padding: 28px !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
}
.woocommerce-checkout #order_review table th {
  font-size: 11px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  color: #8B8078 !important;
}

/* Place order button */
.woocommerce-checkout #place_order {
  background: #1A1A1A !important;
  color: #F5F0EB !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 18px !important;
  font-size: 13px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 400 !important;
  width: 100% !important;
  transition: background 0.3s ease !important;
}
.woocommerce-checkout #place_order:hover {
  background: #333 !important;
}

/* Payment methods */
.woocommerce-checkout .wc_payment_methods {
  border: none !important;
  padding: 0 !important;
}
.woocommerce-checkout .wc_payment_method label {
  font-size: 14px !important;
  font-weight: 400 !important;
}

/* === ORDERING/RESULTS BAR === */
.woocommerce .woocommerce-ordering select {
  border: 1px solid #C4B5A8 !important;
  border-radius: 0 !important;
  padding: 10px 16px !important;
  font-size: 12px !important;
  font-family: 'DM Sans', sans-serif !important;
  letter-spacing: 1px !important;
  background: transparent !important;
}
.woocommerce .woocommerce-result-count {
  font-size: 12px !important;
  color: #8B8078 !important;
  letter-spacing: 1px !important;
}

/* === PAGINATION === */
.woocommerce nav.woocommerce-pagination ul {
  border: none !important;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: none !important;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  padding: 10px 16px !important;
  font-size: 13px !important;
  color: #8B8078 !important;
  background: transparent !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  font-family: 'DM Sans', sans-serif !important;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: #1A1A1A !important;
  color: #F5F0EB !important;
  border-color: #1A1A1A !important;
}

/* === NOTICES === */
.woocommerce .woocommerce-message {
  border-top-color: #C4A882 !important;
  background: #F5EDE6 !important;
  color: #1A1A1A !important;
  font-size: 13px !important;
}
.woocommerce .woocommerce-message a.button {
  background: #1A1A1A !important;
  color: #F5F0EB !important;
  border-radius: 0 !important;
  font-size: 11px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}

/* === WIDGETS / SIDEBAR === */
.widget-area .widget h2,
.widget-area .widget .widget-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  margin-bottom: 16px !important;
}

/* === MY ACCOUNT === */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none !important;
  padding: 0 !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block !important;
  padding: 12px 16px !important;
  font-size: 13px !important;
  letter-spacing: 1px !important;
  color: #4A4440 !important;
  border-bottom: 1px solid rgba(0,0,0,0.04) !important;
  transition: all 0.2s ease !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  color: #1A1A1A !important;
  font-weight: 500 !important;
  border-left: 2px solid #C4A882 !important;
}
