/* Wellsprings Collections Page Styles */
/* Based on the Serenity Cream collection design */

/* Override default page-body-container width for collections/products pages */
.collection-page .page-body-container {
  width: 100% !important;
  margin-right: 0 !important;
}

/* Page header styles */
#page-header {
  width: 970px;
  height: 50px;
  text-align: left;
  padding-bottom: 0px;
  margin-bottom: 15px;
  border-bottom: 2px dotted #CCCCCC;
  font-size: 15px;
  margin-left: auto;
  margin-right: auto;
}

#desktop-page-header {
  display: block;
}

#mobile-page-header {
  display: none;
}

#breadcrumbs-div {
  float: left;
}

.mid-grey {
  color: #999999;
}

.dark-grey {
  color: #333333;
}

/* Main container - overrides for collections pages */
.collections-main-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 40px 20px 0;
  box-sizing: border-box;
}

.collections-inner {
  width: 100%;
  margin: 0;
}

/* Right-hand column - hidden as no longer used */
.page-rh-column,
#rh-column {
  display: none;
}

/* Product container - vertical list layout */
.product-container {
  clear: both;
  width: 100%;
  padding: 10px 0 10px 0;
  text-align: left;
  margin-bottom: 20px;
}

/* Product image on left */
.product-image-wrapper {
  text-align: center;
  float: left;
  width: 168px;
}

.product-image-wrapper img {
  max-width: 147px;
  height: auto;
}

/* Product content wrapper */
.product-content-wrapper {
  float: left;
  padding-left: 30px;
  width: calc(100% - 198px); /* Full width minus image width (168px) and padding (30px) */
}

/* Product description block */
.product-desc-block {
  float: left;
  padding: 20px 0 10px 0;  
  width: calc(100% - 132px); /* Full width minus price block width (90px) and padding (42px) */
}

/* Product name/title */
.store_item_name {
  font-weight: bold;
  font-size: 18px;
  padding-bottom: 10px;
  line-height: 130%;
}

.store_item_name a {
  color: #0088cc;
  text-decoration: none;
}

.store_item_name a:hover {
  text-decoration: underline;
}

/* Product description text */
.product-desc-text {
  line-height: 160%;
  font-size: 14px;
  color: #333;
}

.product-desc-text p {
  margin-top: 0;
  margin-bottom: 0.8em;
}

/* Ingredients text (italics, smaller) */
.ingredients-text {
  font-size: 80%;
  font-style: italic;
  color: #666;
  margin-top: 10px;
}

/* Price block on right */
.item_price_block {
  float: right;
  width: 90px;
  padding: 25px 0 0 22px;
  text-align: right;
}

/* Price styling */
.store_item_price {
  font-weight: bold;
  text-align: right;
  font-size: 16px;
  padding-bottom: 10px;
}

/* Postage & Packing text */
.p-and-p-text {
  margin-top: -10px;
  font-size: 55%;
  color: #C1C1C1;
  padding-bottom: 0px;
  padding-left: 0px;
  width: 110px;
}

/* Add to cart button */
.add-to-cart-button {
  width: 108px;
  height: auto;
  margin-top: 3px;
  border: none;
  cursor: pointer;
  background-color: #77BD31;
}

/* Dotted line separator */
.dotted-line-small {
  clear: both;
  margin: 10px 0;
}

/* Collection header styling */
.collection-header {
  margin-bottom: 30px;
  text-align: left;
}

.collection-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

/* Clear floats */
.clear {
  clear: both;
}

/* Mobile styles handled by device detection, not media queries */

/* Remove default styles that conflict */
.collection-page .products-grid {
  display: block;
}

.collection-page .product-item {
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: left;
  background: transparent;
  box-shadow: none;
}

.collection-page .product-item:hover {
  box-shadow: none;
}