/**
 * Seylan PDP — GemsNY-inspired purchase column + slim chrome
 */
.sg-pdp-crumb {
    background: #fff;
    border-bottom: 1px solid rgba(18, 36, 28, 0.08);
    padding: 14px 0;
}

.sg-pdp-crumb__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #6b7280;
}

.sg-pdp-crumb__nav a {
    color: #0a5c38;
    text-decoration: none;
    font-weight: 600;
}

.sg-pdp-crumb__nav a:hover {
    text-decoration: underline;
}

.sg-pdp-crumb__current {
    color: #4b5563;
    max-width: 42ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sg-pdp-title {
    font-family: "EB Garamond", Georgia, serif !important;
    font-size: clamp(1.45rem, 2.2vw, 1.9rem) !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    color: #12241c !important;
    margin: 0 0 10px !important;
}

.sg-pdp-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: #4b5563;
}

.sg-pdp-meta__item {
    font-weight: 600;
    color: #1f2937;
}

.sg-pdp-meta__sep {
    color: #cbd5e1;
}

.sg-pdp-avail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 2px;
    background: #e8f6ee;
    color: #0a5c38;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sg-pdp-avail--out {
    background: #fef2f2;
    color: #b91c1c;
}

.sg-pdp-avail__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.product-info-card .product-price-section .current-price {
    color: #12241c !important;
    font-size: clamp(1.75rem, 2.5vw, 2.15rem) !important;
    font-weight: 700 !important;
}

.product-info-card .product-price-section .original-price {
    color: #94a3b8 !important;
}

.product-info-card .discount-badge {
    background: #0a5c38 !important;
    color: #fff !important;
    border-radius: 2px !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.04em;
    padding: 4px 8px !important;
}

.sg-pdp-specs {
    background: #fff !important;
    border: 1px solid rgba(18, 36, 28, 0.12) !important;
    border-radius: 2px !important;
    padding: 0 !important;
    margin-bottom: 18px !important;
    overflow: hidden;
}

.sg-pdp-specs .spec-item {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 !important;
    padding: 11px 16px !important;
    border-bottom: 1px solid rgba(18, 36, 28, 0.08);
}

.sg-pdp-specs .spec-item:last-child {
    border-bottom: none;
}

.sg-pdp-specs .spec-item:nth-child(odd) {
    background: #f7faf8;
}

.sg-pdp-specs .spec-label {
    color: #6b7280 !important;
    font-weight: 600 !important;
    font-size: 0.86rem !important;
    min-width: 110px;
}

.sg-pdp-specs .spec-value {
    color: #12241c !important;
    font-weight: 700 !important;
    font-size: 0.92rem !important;
    text-align: right;
}

.sg-pdp-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px;
    margin: 12px 0 8px;
}

.sg-pdp-actions .btn-primary-gem,
.sg-pdp-actions .btn-secondary-gem {
    border-radius: 2px !important;
    flex: 1 1 160px;
    min-height: 48px;
}

.sg-pdp-help {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.sg-pdp-help a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(18, 36, 28, 0.14);
    border-radius: 2px;
    color: #0a5c38;
    background: #fff;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.sg-pdp-help a:hover {
    background: #0a5c38;
    color: #fff;
}

.sg-pdp-ship {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 10px 0 16px;
    padding: 12px 14px;
    border: 1px solid rgba(18, 36, 28, 0.1);
    border-radius: 2px;
    background: #fafcfb;
    font-size: 0.88rem;
    color: #374151;
}

.sg-pdp-ship strong {
    color: #12241c;
}

.sg-pdp-accord {
    border: 1px solid rgba(18, 36, 28, 0.12);
    border-radius: 2px;
    margin: 18px 0;
    overflow: hidden;
    background: #fff;
}

.sg-pdp-accord details {
    border-bottom: 1px solid rgba(18, 36, 28, 0.08);
}

.sg-pdp-accord details:last-child {
    border-bottom: none;
}

.sg-pdp-accord summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #12241c;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sg-pdp-accord summary::-webkit-details-marker {
    display: none;
}

.sg-pdp-accord summary::after {
    content: "+";
    font-size: 1.1rem;
    color: #0a5c38;
    font-weight: 400;
}

.sg-pdp-accord details[open] summary::after {
    content: "−";
}

.sg-pdp-accord__body {
    padding: 0 16px 16px;
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.55;
}

.sg-pdp-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 8px 0 16px;
}

@media (min-width: 576px) {
    .sg-pdp-trust {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.sg-pdp-trust__item {
    border: 1px solid rgba(18, 36, 28, 0.1);
    border-radius: 2px;
    padding: 10px 8px;
    text-align: center;
    background: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #12241c;
}

.sg-pdp-trust__item i {
    display: block;
    color: #0a5c38;
    margin-bottom: 6px;
    font-size: 1rem;
}

/* Hide old giant stock pill — availability is in meta row */
.sg-pdp-hide-stock-pill {
    display: none !important;
}

.product-info-card .trust-badges {
    display: none !important;
}
