.pcc-cart,
.pcc-cart * {
  font-family: 'Montserrat', sans-serif;
}

.pcc-cart {
  width: 100%;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,.04);
}

.pcc-cart-header {
  min-height: 54px;
  background: #282828;
  color: #fff;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.pcc-cart-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.pcc-cart-icon {
  font-size: 18px;
}

.pcc-cart-steps {
  grid-column: 2;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.pcc-cart-steps span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  display: block;
}

.pcc-cart-steps span.is-current {
  background: transparent;
  border: 4px solid #fff;
}

.pcc-cart-content {
  padding: 34px;
}

.pcc-product {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.pcc-product-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.pcc-product h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: #333;
}

.pcc-remove {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  line-height: 1;
  color: #111;
  transition: .2s ease;
}

.pcc-remove:hover {
  background: #f2f2f2;
}

.pcc-product-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(520px, 1fr);
  gap: 44px;
  align-items: start;
}

.pcc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pcc-tags span {
  padding: 5px 12px;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #fff;
  color: #333;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}

.pcc-values {
  display: grid;
  grid-template-columns: repeat(5, minmax(88px, 1fr));
  gap: 18px;
}

.pcc-values small {
  display: block;
  margin-bottom: 9px;
  color: #777;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
}

.pcc-values strong {
  display: block;
  color: #222;
  font-size: 12px;
  line-height: 1.3;
  white-space: nowrap;
}

.pcc-arts {
  margin-top: 20px;
  padding-top: 4px;
}

.pcc-art-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.4fr) 130px 150px 100px;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid #eee;
  color: #444;
  font-size: 13px;
}

.pcc-art-row strong {
  color: #111;
  font-weight: 800;
}

.pcc-art-row a {
  justify-self: start;
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  transition: .2s ease;
}

.pcc-art-row a:hover {
  background: #f5f5f5;
}

.pcc-shipping,
.pcc-total,
.pcc-proof-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid #eee;
}

.pcc-shipping > div > strong,
.pcc-total > strong:first-child,
.pcc-proof-total > strong:first-child {
  font-size: 15px;
  color: #333;
}

.pcc-shipping span {
  display: block;
  margin-top: 8px;
  color: #777;
  font-size: 13px;
  line-height: 1.35;
}

.pcc-shipping > strong,
.pcc-total > strong:last-child,
.pcc-proof-total > strong:last-child {
  font-size: 16px;
  color: #222;
  font-weight: 900;
  white-space: nowrap;
}

.pcc-actions {
  text-align: center;
  margin-top: 30px;
}

.pcc-checkout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 42px;
  background: #111;
  color: #fff !important;
  border-radius: 999px;
  text-decoration: none !important;
  font-weight: 900;
  transition: .2s ease;
}

.pcc-checkout-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.pcc-empty-cart {
  padding: 26px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .pcc-product-grid,
  .pcc-values,
  .pcc-art-row {
    grid-template-columns: 1fr;
  }

  .pcc-cart-header {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pcc-cart-steps {
    grid-column: 1;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .pcc-cart-content {
    padding: 22px;
  }

  .pcc-cart-header {
    padding: 14px 18px;
  }
}
