


:root {
    --meta-gap-x: 24px;
    --meta-gap-y: 6px;
    --meta-label-color: #6b7280; /* gray-500 */
}

/* Blog article specific tweaks */
.article .post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: var(--meta-gap-x);
    row-gap: var(--meta-gap-y);
}

/* Reset default margins for tight inline look */
.article .post-meta > * {
    margin: 0;
}

/* Labels (eyebrow) stay normal weight; slight spacing to the value that follows */
.article .post-meta .eyebrow {
    color: var(--meta-label-color);
    font-weight: 500; /* semi for readability; change to 400 if you want lighter */
    letter-spacing: .02em;
}

/* Values are bolded */
.article .post-meta p {
    font-weight: 700;
}

/* Also bold the share links inside the value paragraph */
.article .post-meta p a {
    font-weight: 700;
    text-decoration: none;
}

/* Optional: slightly dim the separator dot */
.article .post-meta p {
    color: inherit;
}

/* Make sure images in article scale properly (already inline, but keep here for safety) */
.article img {
    width: auto !important;
    max-height:700px !important;
    display: block !important;
    position: sticky;
}
.article-image{
    display:flex;
    flex-direction: column;
    justify-content:center;
    margin-bottom:20px;
    align-items: center;
}
.article .row{
    display: flex;
    flex-direction: row;
    flex-wrap:nowrap;
    margin-left: 0px;
    margin-right:0px;
    margin-top:2rem;


}
.article-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.article h2{
    text-align : center;
}
.article .row > * {
    flex-shrink: 1 !important;
}
@media (max-width: 768px) {
    .article .row {
        flex-direction: column;
    }
}





/* Order summary component styles */
.order-summary {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e6e6e6;
}

.order-summary h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.summary-items {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.summary-items li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #ddd;
}

.summary-items li:last-child {
    border-bottom: none;
}

.summary-items li .item-title {
    font-weight: 500;
    font-size: 1.05rem;
    color: #222;
}

.summary-items li .item-price {
    font-size: 0.95rem;
    color: #555;
    margin-top: 3px;
}

.total {
    font-size: 1.2rem;
    font-weight: 600;
    padding-top: 15px;
    border-top: 2px solid #000;
    color: #111;
}

.total span {
    float: right;
    font-weight: 700;
}

