/* ===================================================== */
/* 3️⃣ ARTICLE INTRO IMAGE FIX                             */
/* ===================================================== */
.item-image {
    float: none !important;
    width: 100%;
    text-align: center;
}

.item-image img {
    display: block;
    margin: 0 auto 12px;
    width: 100%;
    max-width: 350px;
    height: auto;
}

@media (max-width: 767px) {
    .item-image img {
        max-width: 90%;
    }
}

/* ===================================================== */
/* 4️⃣ PRICE FIELD – ALWAYS RED                             */
/* ===================================================== */
.field-entry.price,
.field-entry.price *,
.com-content-article .field-entry.price *,
.com-content-category .field-entry.price * {
    color: #C00000 !important;
    font-weight: 800 !important;
}

.field-entry.price .field-value {
    font-size: 26px !important;
    line-height: 1.2;
    margin: 8px 0 18px;
}

/* Category 11 override */
.com-content-category-11 .field-entry.price .field-value,
.com-content-article.category-11 .field-entry.price .field-value {
    font-size: 22px !important;
}

/* Mobile price size */
@media (max-width: 767px) {
    .field-entry.price .field-value {
        font-size: 20px !important;
    }
}

/* ===================================================== */
/* 5️⃣ SKU FIELD – ALWAYS BLACK                              */
/* ===================================================== */
.field-entry.sku,
.field-entry.sku * {
    color: #000000 !important;
    font-weight: 700 !important;
}

@media (max-width: 767px) {
    .field-entry.sku .field-value {
        font-size: 16px !important;
    }
}

/* ===================================================== */
/* 6️⃣ FIELDS CLEANUP – REMOVE BULLETS/PADDING            */
/* ===================================================== */
.fields-container,
.fields-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ===================================================== */
/* MOBILE HAMBURGER ICON – 3 BLACK LINES PERFECTLY      */
/* ===================================================== */

.container-header .navbar-toggler {
    color: #000000;
    cursor: pointer;
    border: 1px solid #000000;
}

/* Site Description / STORE PENSACOLA Text */
.container-header .site-description {
    color: #B30000 !important; /* bright red for good contrast */
    font-size: 1.2rem;          /* adjust size as needed */
    white-space: normal;        /* allow wrapping */
}

