/** Shopify CDN: Minification failed

Line 188:14 Expected identifier but found whitespace
Line 188:15 Unexpected "600"

**/
.pcb {
    line-height: 1.6;
    padding: 15px 30px;
    border-radius: 8px;
}

.pcb-product{
    background-color: #f9f9f9;
}

.pcb .cb { margin-block: 2rem; }

.cb-title {
        color: #c40d6b;
    border-bottom: 2px solid #c40d6b;
    padding-bottom: 10px;
 }

.cb-subtitle {
    color: #c40d6b;
    font-size: 18px;
    margin: 0.5rem 0 1rem 0;
    font-weight: normal;
}

/* Hero layout styles */
.cb-hero-layout .cb-hero-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.cb-hero-layout .cb-content-section {
    flex: 1;
    min-width: 0;
}

.cb-hero-layout .cb-image-section {
    flex: 1;
    min-width: 0;
}

.cb-featured-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cb-body {
    margin: 1rem 0;
}

/* Button styles */
.cb-button {
    display: inline-block;
    background-color: #c40d6b;
    color: white !important;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cb-button:hover {
    background-color: #a0095a;
    color: white;
    text-decoration: none;
}

.cb-button-center {
    text-align: center;
    margin-top: 1.5rem;
}

.cb-button-under-image {
    text-align: center;
    margin-top: 2rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cb-hero-layout .cb-hero-container {
        flex-direction: column;
    }
    
    .cb-hero-layout .cb-content-section {
        order: 2;
    }
    
    .cb-hero-layout .cb-image-section {
        order: 1;
    }
}

/* Media grid */
/* GRID WRAPPER */
.cb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* COLUMN OVERRIDES */
.cb--cols-2 .cb-grid { grid-template-columns: repeat(2, 1fr); }
.cb--cols-3 .cb-grid { grid-template-columns: repeat(3, 1fr); }
.cb--cols-4 .cb-grid { grid-template-columns: repeat(4, 1fr); }

/* CARD */

.cb-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
}

cb-card__title{
  margin-bottom: .25rem;
}

/* IMAGE */
.cb-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* TITLE */
.cb-card__title {
  color: #c40d6b;
  font-size: 1.5rem;
  margin-bottom: 10px;
  min-height: 3em;        /* align titles */
  display: flex;
  align-items: flex-end;
}

/* DESCRIPTION */
.metafield-multi_line_text_field {
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
  min-height: 5em;        /* align descriptions */
  flex-grow: 1;
}

/* HOVER EFFECT */
.cb-card:hover {
  transform: translateY(-4px);
}

/* table */
.cb-table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.95rem;
}

.cb-table-wrapper th,
.cb-table-wrapper td {
  border: 1px solid #ddd;
  padding: 0.75rem;
  text-align: left;
}

.cb-table-wrapper th {
    background: #c40d6b;
    color: white;
}

  font-weight: 600;
}

.cb-table-wrapper tr:nth-child(even) {
  background-color: #fafafa;
}

.cb-table-wrapper tr:hover {
  background-color: #f0f8ff;
}


/* ink grid */
.cb-ink-grid{
    text-align: center;
}

.cb-ink-grid h2 {
  color: #c40d6b;
  border-bottom: 2px solid #c40d6b;
  padding-bottom: 10px;
  margin-bottom: 1rem;
}

.cb-ink-grid .ink-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}

.cb-ink-grid .ink-section {
  flex: 1 1 45%;
  min-width: 280px;
  text-align: center;
}

.cb-ink-grid .ink-section h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.cb-ink-grid .color-circles {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.cb-ink-grid .circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #ddd;
  /* background-color will come from metafield color picker via Liquid inline style */
}

/* Icons grid layout */
.cb-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.cb-icon-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.cb-icon-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
}

.cb-icon-item p {
  margin: 0;
  line-height: 1.6;
  color: #333;
  flex: 1;
}

.cb-icon-item strong {
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.125rem;
}

/* Column overrides for icons grid */
.cb-icons-grid.cb--cols-2 .cb-icon-grid { grid-template-columns: repeat(2, 1fr); }
.cb-icons-grid.cb--cols-3 .cb-icon-grid { grid-template-columns: repeat(3, 1fr); }
.cb-icons-grid.cb--cols-4 .cb-icon-grid { grid-template-columns: repeat(4, 1fr); }
.cb-icons-grid.cb--cols-5 .cb-icon-grid { grid-template-columns: repeat(5, 1fr); }
.cb-icons-grid.cb--cols-6 .cb-icon-grid { grid-template-columns: repeat(6, 1fr); }

/* Mobile responsiveness for icons */
@media (max-width: 768px) {
  .cb-icon-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cb-icon-item {
    padding: 0.75rem 0;
    gap: 0.75rem;
  }
  
  .cb-icon-item img {
    width: 40px;
    height: 40px;
  }
  
  .cb-icons-grid.cb--cols-2 .cb-icon-grid,
  .cb-icons-grid.cb--cols-3 .cb-icon-grid,
  .cb-icons-grid.cb--cols-4 .cb-icon-grid,
  .cb-icons-grid.cb--cols-5 .cb-icon-grid,
  .cb-icons-grid.cb--cols-6 .cb-icon-grid {
    grid-template-columns: 1fr;
  }
}
