@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Oxygen:700,400");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}
.has-tooltip,
[data-tooltip] {
  position: relative;
}
[data-tooltip]:hover::after,
.has-tooltip:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: normal;
  max-width: 150px;
  width: max-content;
  text-align: center;
  font-size: 12px;
  pointer-events: none;
  z-index: 1000;
}

/* Product Description / Specification Formatting */
.product-description-content {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.product-desc-item {
    display: flex;
    margin-bottom: 8px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.product-desc-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.product-desc-key {
    font-weight: 700;
    min-width: 150px;
    margin-right: 15px;
    color: #000;
}

.product-desc-value {
    color: #555;
    flex: 1;
}
[data-tooltip]:hover::before,
.has-tooltip:hover::before {
  content: "";
  position: absolute;
  bottom: calc(120% - 6px);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.85);
  z-index: 1000;
}

/* Modern Product Summary Block */
.product-summary-block {
    margin: 20px 0;
    font-family: 'Oxygen', sans-serif;
}

.product-summary-block .summary-text {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 25px;
    font-weight: 300;
}

.product-meta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 140px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-color: #e0e0e0;
    transform: translateY(-2px);
}

.meta-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.meta-content {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    margin-bottom: 2px;
}

.meta-value {
    font-size: 14px;
    font-weight: 600;
    color: #222;
}
