/* Change default submenu text color */
.container-header .mod-menu ul li a {
  color: #FF0000; /* Example: Red text color */
}

/* Change submenu text color on hover */
.container-header .mod-menu ul li a:hover {
  color: #FF0000; /* Example: Red text color on hover */
}

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

/* Center article intro & full images */
.item-image {
    text-align: center;
}

.item-image img {
    display: inline-block;
}

/* Cassiopeia Intro Image width */
.item-image img {
  max-width: 400px;
  width: 400px;
  height: auto;
}

/* Price only for category ID 11 */
.com-content-category-11 .field-price,
.com-content-article.category-11 .field-price {
  font-size: 22px;
  font-weight: bold;
  color: #d10000;
  margin: 10px 0;
}

.com-content-article.category-11 .field-price {
  font-size: 22px;
  font-weight: bold;
  color: #d10000;
  margin: 8px 0 15px;
}

/* Clean up Price field */
.field-price {
  list-style: none;
  font-size: 24px;
  font-weight: 700;
  color: #d10000;
  margin: 10px 0 15px;
  padding: 0;
}
/* Remove bullet from Joomla field list */
.fields-container,
.fields-container ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.field-price {
  list-style: none;
  font-size: 26px;
  font-weight: 800;
  color: #e00000;
  margin: 8px 0 18px;
}

/* Price field – force styling */
.field-price,
.field-price .field-value,
.field-price span {
  color: #e00000 !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  line-height: 1.2;
}

/* Style only this field */
.price-red .field-value {
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #e00000 !important;
  display: block;
  margin: 8px 0 18px;
}

/* Remove bullet if it’s inside <li> */
.price-red {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.custom-price {
    color: #ff0000;       /* red */
    font-size: 28px;       /* bigger */
    font-weight: 800;      /* bold */
    margin: 10px 0 15px;
}

/* Hide the default small black price */
.fields-container .field-price {
    display: none;
}

/* Hide the bullet */
.fields-container .field-price {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

/* Price field — make label and value red */
.field-entry.price .field-label,
.field-entry.price .field-value {
    color: #FF0000 !important;
    font-weight: 700;  /* optional bold */
}

/* SKU field — make label and value black */
.field-entry.sku .field-label,
.field-entry.sku .field-value {
    color: #000000 !important;
    font-weight: 700;  /* optional bold */
}

.field-entry.price .field-value {
    font-size: 22px; /* bigger number for emphasis */
}

/* Ensure Price and SKU colors on mobile */
@media (max-width: 767px) {
    /* Price field red on mobile */
    .field-entry.price .field-label,
    .field-entry.price .field-value {
        color: #FF0000 !important;
    }

    /* SKU field black on mobile */
    .field-entry.sku .field-label,
    .field-entry.sku .field-value {
        color: #000000 !important;
    }
}

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

    .field-entry.sku .field-value {
        font-size: 16px !important; /* normal size for SKU */
    }
}

