/* Page Background */
  body {
    background: #4d0000 !important; /* Fallback color */
    background: radial-gradient(circle, #b30000 0%, #4d0000 100%) fixed !important;
    color: #ffffff !important;
	/* Makes text white so it's readable on dark red */
  }

/* Main Header & Navigation */
  #menu, .navbar-inverse, #header {
    background-color: #8B0000 !important;
    background-image: linear-gradient(to bottom, #a00000, #700000) !important;
    border-color: #600000 !important;
  }

/* Content Area Transparency (Optional) */
/* This makes the white boxes slightly transparent so the gradient shows through */
  #content, .well, .card {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
  }
  
/* Main Header & Navigation */
  #menu, .navbar-inverse, #header {
    background-color: #8B0000 !important; /* Dark Blood Red */
    background-image: linear-gradient(to bottom, #a00000, #700000) !important;
    border-color: #600000 !important;
	padding-left: 15%;
  }

/* Buttons - Making them pop */
  .btn-primary, #button-cart, .button {
    background-color: #b30000 !important;
    background-image: linear-gradient(to bottom, #d10000, #8b0000) !important;
    border: 1px solid #700000 !important;
    color: #ffffff !important;
  }

  .btn-primary:hover, #button-cart:hover {
    background-color: #ff0000 !important;
    background-image: none !important;
  }

/* Links and Headings */
  a, h1, h2, h3, .price {
    color: #ffffff;
  }
  
/*Product Thumb*/
  .product-thumb {
    border: none;
    position: relative;
    height: 100%;
	}
	
	.product-thumb .description h4 {
    font-weight: bold;
    font-size: small;
    text-align: center;
	}
	
	
	a, h1, h2, h3, .price {
    color: #ffffff;
    text-align: center;
	}
	
/*Breadcrumb*/
	.breadcrumb {
    display: none;
	margin: 0 0 20px 0;
    padding: 8px 0;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    background-color: var(--bs-tertiary-bg);
	}
	
/*Removes The Add To Cart Button*/
.product-thumb .button {
    display: none !important;
}	
