/* gloow-pdp-v2.css v2.1 — gloow.com fidelity */

/* RATING BAR (2 cols) */
.gloow-v2-ratingbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid #e6dfd3;
    margin: 0 0 16px;
}
.gloow-v2-ratingbar__col {
    padding: 12px 16px;
    border-right: 1px solid #e6dfd3;
    text-align: left;
}
.gloow-v2-ratingbar__col--center { text-align: center; border-right: none; }
.gloow-v2-ratingbar__label { font-size: 13px; color: #666; margin-bottom: 4px; }
.gloow-v2-ratingbar__stars { color: #c9a961; font-size: 18px; letter-spacing: 2px; }
.gloow-v2-ratingbar__bignum { font-size: 28px; font-weight: 700; color: #2c2c2c; line-height: 1; }

/* TITLE */
.gloow-v2-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: #2c2c2c;
    margin: 0 0 16px;
    line-height: 1.2;
}

/* ECONOMIZE BADGE */
.gloow-v2-savebadge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #2d5a3d;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px;
}
.gloow-v2-savebadge__icon { font-size: 14px; }
.gloow-v2-savebadge strong { font-weight: 700; }

/* BIG PRICE */
.gloow-v2-bigprice { display: flex; align-items: baseline; gap: 12px; margin: 0 0 20px; flex-wrap: wrap; }
.gloow-v2-bigprice__now {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1;
}
.gloow-v2-bigprice__was { font-size: 16px; color: #999; }

/* BULLETS */
.gloow-v2-bullets { list-style: none; padding: 0; margin: 0 0 24px; }
.gloow-v2-bullets li {
    padding: 6px 0 6px 28px;
    position: relative;
    font-size: 14px;
    color: #333;
}
.gloow-v2-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
    font-size: 16px;
}

/* SELECIONADO */
.gloow-v2-selected { font-size: 14px; color: #666; margin: 0 0 12px; }
.gloow-v2-selected strong { color: #2c2c2c; font-weight: 700; }

/* COLOR SWATCHES */
.gloow-v2-cores { display: flex; gap: 10px; flex-wrap: wrap; margin: 0 0 24px; }
.gloow-v2-cor {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    background: #fff;
    transition: all 0.2s;
}
.gloow-v2-cor img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gloow-v2-cor:hover { border-color: #2d5a3d; }
.gloow-v2-cor.is-active {
    border-color: #2d5a3d;
    border-width: 3px;
    box-shadow: 0 0 0 2px rgba(45, 90, 61, 0.15);
}

/* KITS DISPONIVEIS */
.gloow-v2-kit-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #666;
    margin: 8px 0 12px;
}

/* KIT VERTICAL LIST (radio button cards) */
.gloow-v2-kits--vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 24px;
}
.gloow-v2-kit {
    background: #fff;
    border: 2px solid #e6dfd3;
    border-radius: 12px;
    padding: 16px 18px;
    cursor: pointer;
    position: relative;
    display: grid;
    grid-template-columns: 24px 1fr auto;
    gap: 14px;
    align-items: center;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
    width: 100%;
}
.gloow-v2-kit:hover { border-color: #b8c8b8; }
.gloow-v2-kit.is-active {
    border-color: #2d5a3d;
    border-width: 2px;
    background: #f5f9f6;
}
.gloow-v2-kit__badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #2d5a3d;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 2;
}
.gloow-v2-kit__radio {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.gloow-v2-kit__radio span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    display: block;
}
.gloow-v2-kit.is-active .gloow-v2-kit__radio { border-color: #2d5a3d; }
.gloow-v2-kit.is-active .gloow-v2-kit__radio span { background: #2d5a3d; }

.gloow-v2-kit__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.gloow-v2-kit__nameline { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.gloow-v2-kit__name { font-size: 16px; font-weight: 700; color: #2c2c2c; }
.gloow-v2-kit__extra {
    font-size: 10px;
    font-weight: 700;
    color: #2d5a3d;
    background: #d4f0d8;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.gloow-v2-kit__rend { font-size: 12px; color: #666; }
.gloow-v2-kit__priceblock { text-align: right; display: flex; flex-direction: column; gap: 2px; }
.gloow-v2-kit__price { font-size: 17px; font-weight: 700; color: #2d5a3d; line-height: 1.1; }
.gloow-v2-kit__reg { font-size: 12px; color: #999; }

/* ATC */
.gloow-v2-cart { margin: 0 0 16px; }
.gloow-v2-atc {
    width: 100%;
    padding: 18px;
    background: #2d5a3d;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
}
.gloow-v2-atc:hover { background: #1f3f2a; }

/* ENTREGA */
.gloow-v2-deliv {
    font-size: 13px;
    color: #666;
    text-align: center;
    margin-bottom: 16px;
}
.gloow-v2-deliv strong { color: #2c2c2c; font-weight: 700; }

/* REVIEWS V2 — unchanged */
.gloow-v2-reviews { max-width: 1100px; margin: 48px auto; padding: 0 16px; }
.gloow-v2-reviews h2 { font-family: "Playfair Display", Georgia, serif; font-size: 32px; color: #2c2c2c; margin: 0 0 24px; }
.gloow-v2-reviews__top { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 0 0 32px; padding: 24px; background: #f9f5ee; border-radius: 12px; }
.gloow-v2-reviews__num { font-size: 48px; font-weight: 700; color: #2c2c2c; line-height: 1; }
.gloow-v2-reviews__stars { display: block; color: #c9a961; font-size: 20px; margin: 6px 0; }
.gloow-v2-reviews__count { color: #666; font-size: 14px; }
.gloow-v2-reviews__dist { list-style: none; padding: 0; margin: 0; }
.gloow-v2-reviews__dist li { display: grid; grid-template-columns: 24px 1fr 32px; gap: 8px; align-items: center; padding: 3px 0; font-size: 13px; }
.gloow-v2-reviews__dbar { background: #e0e0e0; height: 8px; border-radius: 4px; overflow: hidden; }
.gloow-v2-reviews__dbar span { display: block; height: 100%; background: #c9a961; }
.gloow-v2-reviews__list { list-style: none; padding: 0; margin: 0; }
.gloow-v2-rv { background: #fff; border: 1px solid #e6dfd3; border-radius: 12px; padding: 20px; margin: 0 0 16px; }
.gloow-v2-rv__head { display: flex; align-items: center; gap: 12px; margin: 0 0 8px; }
.gloow-v2-rv__avatar { width: 36px; height: 36px; border-radius: 50%; background: #2d5a3d; color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.gloow-v2-rv__name { font-weight: 700; color: #2c2c2c; }
.gloow-v2-rv__verified { font-size: 11px; color: #2d5a3d; background: #e8f3ec; padding: 2px 8px; border-radius: 4px; font-weight: 600; }
.gloow-v2-rv__stars { color: #c9a961; margin: 0 0 8px; font-size: 16px; }
.gloow-v2-rv__text { color: #333; line-height: 1.6; margin: 0 0 12px; }
.gloow-v2-rv__reply { background: #f5f1ea; padding: 12px 16px; border-radius: 8px; border-left: 3px solid #c9a961; }
.gloow-v2-rv__reply-name { font-weight: 700; color: #2c2c2c; font-size: 13px; }
.gloow-v2-rv__reply p { font-size: 13px; color: #666; margin: 4px 0 0; }

/* STICKY V2 */
.gloow-v2-sticky { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; box-shadow: 0 -4px 12px rgba(0,0,0,0.1); padding: 10px 12px; display: flex; align-items: center; gap: 10px; z-index: 9999; transform: translateY(100%); transition: transform 0.3s; }
.gloow-v2-sticky[data-visible="true"] { transform: translateY(0); }
.gloow-v2-sticky__thumb { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; }
.gloow-v2-sticky__meta { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.gloow-v2-sticky__title { font-size: 13px; font-weight: 700; color: #2c2c2c; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gloow-v2-sticky__var { font-size: 11px; color: #666; }
.gloow-v2-sticky__btn { padding: 12px 18px; background: #2d5a3d; color: #fff; border: none; border-radius: 6px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; cursor: pointer; }
@media (min-width: 992px) { .gloow-v2-sticky { display: none; } }

/* ORDER BUMP */
.gloow-v2-bump { margin: 24px 0; padding: 16px; background: #fff8e1; border: 2px dashed #c9a961; border-radius: 12px; }
.gloow-v2-bump__label { display: flex; gap: 12px; cursor: pointer; align-items: flex-start; }
.gloow-v2-bump__cb { width: 20px; height: 20px; margin-top: 4px; flex-shrink: 0; }
.gloow-v2-bump__box { flex: 1; }
.gloow-v2-bump__box strong { display: block; color: #2c2c2c; font-size: 15px; margin-bottom: 6px; }
.gloow-v2-bump__box small { color: #666; font-size: 13px; line-height: 1.5; }

/* FOOTER V2 */
.gloow-v2-footer { background: #1f1f1f; color: #ccc; padding: 48px 16px 16px; margin-top: 64px; }
.gloow-v2-footer__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
.gloow-v2-footer__brand strong { font-size: 24px; color: #fff; letter-spacing: 2px; display: block; margin-bottom: 12px; }
.gloow-v2-footer__logo { display: block; max-width: 240px; height: auto; margin-bottom: 16px; }
.gloow-v2-footer__brand p { color: #aaa; font-size: 14px; line-height: 1.6; margin: 8px 0; }
.gloow-v2-footer__contact { font-size: 13px; }
.gloow-v2-footer h4 { font-size: 13px; letter-spacing: 1px; color: #fff; margin: 0 0 12px; }
.gloow-v2-footer ul { list-style: none; padding: 0; margin: 0; }
.gloow-v2-footer ul li a { color: #aaa; font-size: 13px; line-height: 2; text-decoration: none; }
.gloow-v2-footer ul li a:hover { color: #fff; }
.gloow-v2-footer__pay-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.gloow-v2-footer__pay-icons img {
    background: #fff;
    padding: 6px 8px;
    border-radius: 4px;
    width: 48px;
    height: 32px;
    object-fit: contain;
    box-sizing: border-box;
}
.gloow-v2-footer__cnpj { max-width: 1100px; margin: 32px auto 0; padding-top: 16px; border-top: 1px solid #333; text-align: center; font-size: 12px; color: #666; }

@media (max-width: 768px) {
    .gloow-v2-reviews__top { grid-template-columns: 1fr; }
    .gloow-v2-footer__inner { grid-template-columns: 1fr; gap: 24px; }
}
