/** Shopify CDN: Minification failed

Line 6:0 Unexpected "0"

**/
0/* Ensure the page-width wrapper applies consistent padding */
.page-width {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
  box-sizing: border-box;
}

/* Fix for the inner product info container */
.product__info-container {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Fix for the accordion container */
.product-details-container {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Ensure the accordion doesn't get extra padding */
.accordion {
  width: 100%;
  margin-bottom: 2rem;
  box-sizing: border-box;
}

/* Individual Accordion Item */
.accordion__item {
  margin-bottom: 0.75rem;
  border: none;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
  overflow: visible;
}

.accordion__summary {
  font-weight: 500;
  font-size: 1.375rem;
  color: #333;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12); /* clean bottom line */
  border-radius: 0;
  box-shadow: none;
  transition: border-color 0.3s ease;
}


/* Inner padding wrapper */
.accordion__summary-text {
  flex-grow: 1;
  padding: 0.75rem 0;
  box-sizing: border-box;
}


/* Fix for open border */
.accordion__item[open] .accordion__summary {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.accordion__summary::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
  margin-left: auto;
  padding-right: 0;
  transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.accordion__item[open] .accordion__summary::after {
  transform: rotate(90deg);
}

/* Accordion content */
.accordion__content {
  font-size: 1.25rem;        /* Slightly smaller than summary */
  font-weight: 400;            /* Lighter than summary (which is 500) */
  color: #444;                 /* Slightly softer for readability */
  line-height: 1.7;            /* Comfortable line height */
  padding: 1.25rem 0;
  animation: fadeIn 0.3s ease;
  font-family: inherit;        /* Matches whatever the summary uses */
}

.accordion__content ul,
.accordion__content li {
  list-style: none;        /* Removes bullet points */
  padding-left: 0;         /* Removes left indentation */
  margin-left: 0;
}

.accordion__content li::before {
  content: none !important;  /* Removes custom dash if set via ::before */
}

/* Product Table Styling */
.product-table {
  width: 100%;
  border-collapse: separate; /* Prevents collapsing cell heights */
  border-spacing: 0; /* No extra space between cells */
  margin-top: 1rem;
}

/* Fix for left column alignment */
.product-table th,
.product-table td {
  padding: 0.75rem 1.5rem; /* Ensure consistent padding */
  text-align: left;
  vertical-align: top; /* Align to the top for consistency */
  word-break: break-word;
  overflow-wrap: break-word;
  border: none;
}

/* First column padding adjustment */
.product-table tr td:first-child {
  width: 30%; /* Restrict the first column to a smaller percentage */
  padding-left: 2rem; /* Match left padding */
  padding-right: 1.5rem;
  white-space: normal; /* Prevent awkward wrapping */
  word-break: break-word;
  font-weight: 700;
  vertical-align: top; /* Ensure proper vertical alignment */
}

/* Second column (stone descriptions) */
.product-table tr td:last-child {
  width: 70%; /* Allow the right column to take more space */
  padding-left: 0.5rem; /* Add a bit of breathing room */
  padding-right: 2rem; /* Match right padding */
  vertical-align: top;
  white-space: normal; /* Allow natural wrapping */
}

/* List inside table cells */
.product-table ul {
  padding-left: 1.5rem;
  margin: 0.5rem 0;
}

/* List item spacing */
.product-table li {
  list-style-type: none;
  position: relative;
  margin-bottom: 0.25rem;
  padding-left: 1.25rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .accordion__content table,
  .accordion__content tbody,
  .accordion__content tr,
  .accordion__content td {
    display: block;
    width: 100%;
  }

  .accordion__content tr td:first-child {
    font-weight: bold;
    margin-bottom: 8px;
    white-space: normal;
  }
}

/* Fade animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-promo-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: white;
  font-size: 1rem;
  text-align: center;
  line-height: 1.4
}

.site-promo-bar .promo-item {
  white-space: nowrap;
}

/* Optional: better for smaller devices */
@media (max-width: 480px) {
  .site-promo-bar {
    flex-direction: column;
    gap: 0.4rem;
    font-size: 1rem
  }

  .site-promo-bar .promo-item {
    white-space: normal;
  }
}

.footer-divider {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1); /* soft gray line */
  margin: 40px 0 20px;
  width: 100%;
}