.wp-block-heading > a {
  color: #c4d6c4;
  text-decoration: none;
}

.category-link {
  text-decoration: none;
  color: black;
}
.category-sep { opacity: .6; }

.woocommerce button.button.alt, 
.woocommerce a.button.alt {
  border: 1px solid var(--101010);
  background-color: var(--101010);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  padding: 10px 146px;
  font-size: 14px;
  line-height: 20px;
  transition: all .25s;
}

/* Container Alignment */
.collection-item-products {
    display: flex;
    align-items: flex-start;
    gap: 40px; /* Adjust gap between image and text */
}

/* Image Proportions */
.product-left {
    flex: 0 0 45%; /* Image takes 45% width */
}
.product-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 700px; /* Prevents vertical stretching */
}

.product-list {
    flex: 1; /* Content takes the rest */
}

/* Force WooCommerce Form to match Webflow */
.webflow-woo-override form.cart {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

/* Fix Variable Dropdowns (Sizes) */
.webflow-woo-override .variations select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    background-color: #f9f9f9;
}

/* Fix Quantity Input */
.webflow-woo-override .quantity input.qty {
    width: 60px;
    height: 48px;
    border: 1px solid #e1e1e1;
    text-align: center;
    margin-right: 10px;
}

/* Inherit button-01 Styles */
.webflow-woo-override .single_add_to_cart_button {
    /* Replace these colors with your Webflow button-01 values */
    background-color: #101010 !important; 
    color: #ffffff !important;
    padding: 15px 30px !important;
    border-radius: 0px !important; /* Matches your style */
    text-transform: uppercase;
    font-weight: 600;
    border: none !important;
    cursor: pointer;
    transition: 0.3s;
}

.webflow-woo-override .single_add_to_cart_button:hover {
    background-color: #333 !important;
}

/* Layout Grid */
.products-details-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

/* Image Background Styling */
.product-image-wrapper {
    background-color: #fff; /* Matching the screenshot grey tint */
    padding: 40px;
    display: flex;
    justify-content: center;
}
.product-main-img {
    width: 100%;
    max-height: 800px;
    object-fit: contain;
}

/* Info Column Styling */
.exclusive-product-name {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.price-rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
}

.product-price {
    color: #000; /* Reddish price as seen in screenshot */
    font-weight: 100;
}

/* Add to Cart Layout */
.cart .variations { width: 100%; }
.cart .variations td { display: block; padding: 10px 0; }
.cart .variations label { text-transform: uppercase; font-size: 12px; font-weight: bold; }

/* Styling the buttons to look like the screenshot */
.single_add_to_cart_button {
    background: #101010 !important;
    color: white !important;
    width: 100%;
    padding: 18px !important;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 0 !important;
}

.button-buy-now {
    display: block;
    text-align: center;
    border: 1px solid #101010;
    padding: 18px;
    margin-top: 10px;
    color: #101010;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}

/* Style the WooCommerce dropdown to match Webflow .select-product */
.woocommerce-ordering select {
    width: 100%;
    padding: 10px;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    appearance: none; /* Removes default arrow to use your own if needed */
}

.w-pagination-wrapper.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* If only one button exists, push it to the correct side */
.w-pagination-wrapper.pagination:not(:has(.w-pagination-previous)) {
    justify-content: flex-end;
}