/* Hutchins BBQ - Brand CSS */
/* https://hutchinsbbq.com/ */

/* Fonts
   Alfa Slab One = substitute for VFC Sulfer Press (heavy slab serif with bold BBQ character)
   Barlow Condensed = brand body font (used directly on hutchinsbbq.com, Google Font) */
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Barlow+Condensed:wght@300;400;500;600;700;800;900&display=swap');


/* Global Color Variables
Primary: #1d1b1b (Hutchins Near-Black - dominant brand color, header/footer, headings)
Secondary: #d44527 (Hutchins Orange-Red - CTAs, accents, location bar, Texas icon in logo)
Dark: #1d1b1b (Same as primary)
Light: #FFFFFF (White - backgrounds)
Grey: #434343 (Mid grey - secondary text, disabled states)

Brand Accent Colors:
- Burnt Red: #b82105 (deep red - hover darkening, emphasis)
- Gold: #f5a524 (warm gold - warm accents)
- Orange: #f7630c (bright orange - additional accent)

Fonts:
- Heading: VFC Sulfer Press (custom @font-face on brand site) -> Alfa Slab One (Google substitute)
- Body: Barlow Condensed (Google Font, used on brand site)
*/

:root {
	--primary: #1d1b1b;
	--secondary: #d44527;
	--dark: #1d1b1b;
	--light: #FFFFFF;
	--grey: #434343;

	--burnt-red: #b82105;
	--gold: #f5a524;

	/* Define Fonts */
	--primary-font: 'Alfa Slab One', 'Georgia', serif;
	--secondary-font: 'Barlow Condensed', 'Arial Narrow', sans-serif;

	/* Bootstrap Overrides */
	--bs-black: var(--dark) !important;
	--bs-link-hover-color-rgb: var(--dark) !important;
	--bs-primary: var(--primary) !important;
	--bs-background-blue: var(--secondary) !important;
	--bs-emphasis-color: var(--primary) !important;
	--bs-heading-color: var(--primary) !important;
	--bs-medium-grey: var(--grey) !important;
	--bs-highlight-rgb: var(--secondary) !important;
	--bs-highlight: var(--secondary) !important;
	--bs-secondary-rgb: var(--dark) !important;
	--bs-gray: var(--grey) !important;
}


@keyframes descend {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.card {
	opacity: 0;
	animation: descend .9s ease-in-out forwards;
}


/* Universal Elements */
a {
	color: var(--secondary);
	background: transparent;
}

a:hover {
	color: var(--burnt-red);
	background: transparent;
}

body {
	font-family: var(--secondary-font);
	color: var(--dark);
	background-color: var(--light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--primary-font);
	font-weight: normal !important;
}

h1.fw-bold,
h2.fw-bold,
h3.fw-bold,
h4.fw-bold,
h5.fw-bold,
h6.fw-bold {
	font-weight: normal !important;
}

/* End Universal Elements */


/* Header */

.logo-container {
	display: flex;
	justify-content: center;
}

.logo-container>a {
	display: block;
	width: 60%;
	max-width: 420px;
	min-width: 160px;
}

.logo-container>a>img {
	display: block;
	width: 100%;
	height: auto;
}

.navbar-main {
	height: 80px;
}

.c-dropdown-menu {
	padding: 0 15px !important;
}

.c-profile__group .c-dropdown-menu-card .c-dropdown-card .c-profile-links .c-dropdown-menu li .dropdown-item {
	border-bottom: 1px solid var(--dark) !important;
}

.c-btn__signin .btn,
.c-btn__signup .btn {
	white-space: nowrap;
}

.c-btn__signin .btn {
	background: var(--light) !important;
	color: var(--primary) !important;
	border: 1px solid var(--light) !important;
	border-radius: 25px !important;
}

.c-btn__signup .btn {
	background: var(--secondary) !important;
	color: var(--light) !important;
	border: 1px solid var(--secondary) !important;
	border-radius: 25px !important;
}

.c-btn__signin .btn::after,
.c-btn__signup .btn::after {
	display: none !important;
}

.navbar-main {
	background: var(--primary) !important;
	display: flex;
	justify-content: space-between;
}

.navbar-brand {
	display: none;
}

.nav-item__language {
	display: none !important;
}

.header-links {
	display: none;
}

.header-container {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.nav.c-nav__delivery {
	background: var(--secondary) !important;
	color: var(--light) !important;
}

.nav-item>.c-btn__sm {
	color: var(--light);
}

.nav-item>img {
	filter: brightness(0) invert(1);
}

/* Desktop Header */
@media only screen and (min-width:48.001rem) {}

/* Mobile Header */
@media only screen and (max-width:48rem) {
	.navbar-toggler-icon {
		filter: invert(1);
	}

	.c-nav__delivery .c-label__text {
		color: var(--light);
	}

	.c-header__main>nav>div {
		margin: auto;
		display: block !important;
	}

	.logo-container>a>img {
		margin: auto;
		width: 25% !important;
	}

	.navbar-cart__wrapper {
		display: flex;
		justify-content: space-between;
		position: absolute;
		top: 7px;
		width: 100%;
	}

	header.c-header__main nav.navbar {
		padding: 0.25rem 1rem .75rem !important;
	}
}

/* End Header */

/* Footer */

.left-footer-links,
.right-footer-links {
	display: flex;
	flex-direction: column;
}

.top-footer-links {
	display: flex;
	width: 50%;
	justify-content: space-evenly;
}

.bottom-footer {
	width: 100%;
	padding: 20px 20px 5px 20px;
}

.bottom-footer-links {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.bottom-footer-links>a,
.left-footer-links>a,
.right-footer-links>a,
footer h3 {
	color: var(--light);
}

.top-footer {
	display: flex;
	width: 100%;
	padding: 20px 0;
	border-top: 3px double var(--secondary);
	justify-content: center;
}

.bottom-footer {
	display: flex;
	justify-content: center;
	padding-top: 10px;
	padding-right: 45px;
	border-top: 1px dashed rgba(255, 255, 255, 0.3);
}

footer {
	padding-top: 5px;
	background: var(--primary);
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

footer a {
	text-decoration: none;
}

.middle-footer-logo>img {
	width: 50%;
}

.middle-footer-logo {
	display: flex;
	justify-content: center;
}

#monkeyCopyRight>a {
	color: var(--secondary);
}

.copy_text {
	color: var(--light);
}

/* Desktop Footer */
@media only screen and (min-width:48.001rem) {}

/* Mobile Footer */
@media only screen and (max-width:48rem) {

	.top-footer,
	.top-footer-links,
	.bottom-footer,
	.bottom-footer-links {
		flex-direction: column;
		width: 100%;
		align-items: center;
		text-align: center;
	}

	.middle-footer-logo>img {
		width: 25%;
	}

	.bottom-footer {
		padding: 10px 0;
	}
}

/* End Footer */


/* Main Content */

.card-product__price .btn-quick-add img {
	filter: brightness(0) invert(1);
	transition: filter 0.3s ease;
	background: transparent !important;
}

.card-product__price .btn-quick-add:hover img {
	filter: none;
}

.btn-outline-primary {
	background-color: var(--secondary);
	color: var(--light);
	border: 1px solid var(--secondary);
	border-radius: 25px;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	transition: all 0.3s ease;
}

.btn-outline-primary::after {
	content: '\203A';
	display: inline-flex;
	align-items: center;
	font-size: 2.3rem;
	line-height: 1;
	width: 0;
	opacity: 0;
	overflow: hidden;
	transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out, margin 0.3s ease-in-out;
}

.btn-outline-primary:hover::after {
	width: 1rem;
	opacity: 1;
	margin-left: 0.5rem;
    margin-bottom: 0.25rem;
}

.c-checkout__details {
	border: 1px solid var(--dark);
	padding: 20px;
	background: var(--light);
	border-radius: 0;
}

#v-loyalty-rewards,
#v-saved-locations {
	margin-top: 3.375rem;
}

#v-loyalty-rewards>div:nth-child(1),
#v-saved-locations>div:nth-child(2) {
	display: none;
}

#v-pills-tab>.nav-item>.nav-link {
	border-bottom: 1px solid var(--dark);
}

.c-sidebar__account {
	margin: 3.375rem 3rem;
	border: 1px solid var(--dark);
	padding: 20px;
	background: var(--light);
	border-radius: 0;
}

#accountInformationForm {
	border: 1px solid var(--dark);
	padding: 20px;
	background: var(--light);
	border-radius: 0;
}

.c-product__tabs .nav-tabs .nav-item .nav-link.active::before {
	content: none;
}

.nav-tabs__categories {
	padding: 10px;
	border: 1px solid var(--dark) !important;
	border-radius: 0;
}

#btnCheckoutFixed {
	background: var(--light);
	padding: 1rem 3rem 1rem 2.1rem;
}

.c-product-item__details .c-product__block {
	padding: 24px;
	border: 1px solid var(--dark);
	background: white;
	border-radius: 0;
}

.accordion-item:last-of-type .accordion-button.collapsed {
	border-radius: 0;
}

.btn-primary {
	--bs-btn-color: var(--light) !important;
	--bs-btn-bg: var(--secondary) !important;
	--bs-btn-border-color: var(--secondary) !important;
	--bs-btn-hover-color: var(--light) !important;
	--bs-btn-hover-bg: var(--burnt-red) !important;
	--bs-btn-hover-border-color: var(--burnt-red) !important;
	--bs-btn-focus-shadow-rgb: 212, 69, 39;
	--bs-btn-active-color: var(--light) !important;
	--bs-btn-active-bg: var(--dark) !important;
	--bs-btn-active-border-color: var(--dark) !important;
	--bs-btn-active-shadow: inset 0 3px 5px rgba(29, 27, 27, 0.25);
	--bs-btn-disabled-color: var(--light) !important;
	--bs-btn-disabled-bg: #babbbd !important;
	--bs-btn-disabled-border-color: var(--grey) !important;
	border-radius: 25px;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.btn-primary:not(.btn-quick-add) {
	display: inline-flex;
        justify-content: center;
	align-items: center;
}

.c-btn__add-to-cart--xl.btn-primary,
#btnCheckout.btn-primary {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center;
	width: 100%;
}

.c-btn__add-to-cart--xl.btn-primary::after,
#btnCheckout.btn-primary::after {
	display: none !important;
}

.c-btn__add-to-cart--xl .c-cart__price,
#btnCheckout .c-cart__price {
	display: inline-flex;
	align-items: center;
}

.c-btn__add-to-cart--xl .c-cart__price::after,
#btnCheckout .c-cart__price::after {
	content: '\203A';
	display: inline-flex;
	align-items: center;
	font-size: 2.3rem;
	line-height: 1;
	width: 0;
	opacity: 0;
	overflow: hidden;
	transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out, margin 0.3s ease-in-out;
}

.c-btn__add-to-cart--xl:hover .c-cart__price::after,
#btnCheckout:hover .c-cart__price::after {
	width: 1rem;
	opacity: 1;
	margin-left: 0.5rem;
    margin-bottom: 0.25rem;
}

.btn-primary:not(.btn-quick-add)::after {
	content: '\203A';
	display: inline-flex;
	align-items: center;
	font-size: 2.3rem;
	line-height: 1;
	width: 0;
	opacity: 0;
	overflow: hidden;
	transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out, margin 0.3s ease-in-out;
}

.btn-primary:not(.btn-quick-add):hover::after {
	width: 1rem;
	opacity: 1;
	margin-left: 0.5rem;
    margin-bottom: 0.25rem;
}

.btn.btn-primary:hover {
	background-color: var(--burnt-red) !important;
	box-shadow: 0px 15px 25px -7px rgba(0, 0, 0, 0.1);
}

.c-card__product .card img,
.c-product-item__details .c-product__details .c-product__img {
	background-color: var(--light);
}

.c-group-filter .c-btn-filter:hover,
.c-group-filter .c-btn-filter:active,
.c-group-filter .c-btn-filter.show,
.c-group-filter .c-btn-filter:focus-visible,
.c-group-filter .icon__close:focus-visible {
	border: 1px solid var(--dark) !important;
}

#sidebarCart .btn-add-to-cart.c-collapse-arrow:hover,
#sidebarCart .btn-add-to-cart.c-collapse-arrow:active,
#sidebarCart .btn-add-to-cart.c-collapse-arrow {
	background-color: var(--secondary) !important;
	border: 1px solid var(--dark) !important;
	border-radius: 25px;
}

.dropdown-item:hover,
.dropdown-item:focus {
	background-color: rgba(212, 69, 39, 0.1);
}

.c-collapse-arrow:hover {
	background-color: rgba(212, 69, 39, 0.15) !important;
}

.nav-link.active {
	border-top: 1px double var(--dark) !important;
	border-right: 1px double var(--dark) !important;
	border-left: 1px double var(--dark) !important;
	border-radius: 0;
	background-color: rgba(212, 69, 39, 0.1) !important;
}

.btn.btn-outline-primary:hover,
.btn.btn-outline-primary:active {
	color: var(--light) !important;
	border: 1px solid var(--burnt-red) !important;
	background: var(--burnt-red) !important;
	box-shadow: 0px 15px 25px -7px rgba(0, 0, 0, 0.1);
}

.c-btn__signin>a,
.c-btn__signin>a:hover {
	background: var(--light) !important;
	color: var(--primary) !important;
}

.c-btn__signin:hover,
.c-btn__signup:hover,
#btnCheckout:hover {
	transform: scale(1.03);
}

.c-btn__signin .btn:hover {
	background: var(--secondary) !important;
	color: var(--light) !important;
	border-color: var(--secondary) !important;
}

.c-btn__signup .btn:hover {
	background: var(--light) !important;
	color: var(--primary) !important;
	border-color: var(--light) !important;
}

#heading_preorder,
.c-content__heading {
	color: var(--primary);
}

/* Profile Menu Icon */
.c-profile__group .c-profile__dropdown span {
	color: var(--light) !important;
}

.c-sidebar__cart.open,
.c-sidebar__cart.close {
	transition: all 0.3s ease-in-out;
}

.c-product__tabs .nav-tabs .nav-item .nav-link:hover {
	color: var(--secondary) !important;
}

.c-product__tags .badge {
	background-color: var(--secondary) !important;
}

.c-product__sub-categries.row {
	padding: 10px;
}

.c-card__product .card:hover {
	border-color: var(--secondary);
	transform: scale(1.02) !important;
	filter: drop-shadow(2px 2px 6px rgba(212, 69, 39, 0.35));
}

.c-card__product .card {
	border: 2px solid var(--dark);
	transition: transform 0.3s ease;
	border-radius: 0;
}

.item-header {
	text-transform: uppercase;
	font-family: var(--primary-font);
	letter-spacing: 1px;
}

.dropdown-menu,
.overflow-auto {
	scrollbar-color: var(--secondary) var(--primary);
	scrollbar-width: thin;
}

button#findStores {
    margin-bottom: 2rem;
}

#skipToMenu,
#submitMenu {
	background: var(--secondary) !important;
	color: var(--light) !important;
	border: 1px solid var(--secondary) !important;
	border-radius: 25px !important;
	font-family: var(--primary-font);
	text-transform: uppercase;
	transition: all 0.3s ease;
        padding: 0.5rem;
        width: 50%;
        display: flex;
        justify-content: center;
        margin: 0 auto;
}

#skipToMenu:hover,
#submitMenu:hover {
	background: var(--burnt-red) !important;
	border-color: var(--burnt-red) !important;
	box-shadow: 0px 15px 25px -7px rgba(0, 0, 0, 0.1);
}

.c-skip__menu .menu-link {
       margin-top: 2rem !important;
}

.c-skip__menu .menu-link a {
    display: flex !important;
    width: 50%;
    justify-content: center !important;
    margin: 0 auto;
    text-decoration: none;
}

/* Desktop Main Content */
@media only screen and (min-width:48.001rem) {
	.c-card__product .card {
		scale: 0.9;
	}
}

/* Mobile Main Content */
@media only screen and (max-width:48rem) {}

/* End Main Content */

/* Things that should not be local, these really need to be main app style rules */

@media (max-width: 48em) {
	.c-sidebar__block {
		height: 0;
	}
}

.credit-card-multi-image {
	max-width: 250px;
}

.card-product__price .btn-quick-add img {
	filter: brightness(0) invert(1);
	transition: filter 0.3s ease;
	background: transparent !important;
}

.card-product__price .btn-quick-add:hover img {
	filter: none;
}

#activateEditButton {
	background-color: var(--light);
}

.c-product-item__details .c-product__details .c-product__img.default_product_image {
	object-fit: cover;
}

.c-product__description .productSummaryText {
	height: 3rem;
	overflow: hidden;
}

/* Hide Loyalty */
.c-dropdown-menu li:has(a[href="/online/loyaltyReward"]),
.c-dropdown-menu li:has(a[href="/online/dev418/loyaltyReward"]),
.c-sidebar__account li:has(a[href="/online/loyaltyReward"]),
.c-sidebar__account li:has(a[href="/online/dev418/loyaltyReward"]) {
	display: none;
}

/* Credit Card Selection */
[id^="profile_id_-"][id$="_label"]:has(input:checked)::before {
	content: "\2713\0020 ";
	color: var(--bs-highlight);
	margin-right: 0.5em;
}

#payment_method_2 #cc_profiles li.c-payment-method__item--profile-MOO:has(.c-form-choice:nth-of-type(1):last-of-type) {
	display: none;
}

/* END Credit Card Selection */

/* Add to cart sticky fix */
.c-main__content.mainContentActive.c-main__product {
	padding-bottom: 0px !important;
	margin-bottom: 0 !important;
}

.c-quantity-cart__fixed.fixed-bottom {
	position: sticky;
	bottom: 0;
	left: auto;
	right: auto;
	z-index: 1020;
}

.c-quantity-cart__fixed {
	width: calc(100% - 400px);
	margin-inline: auto;
	transform: translateX(0);
	display: none;
	opacity: 0;
	transition: opacity 1s, visibility 1s ease-in-out;
}

.c-quantity-cart__fixed.show {
	display: block;
	opacity: 1;
}

.c-quantity-cart__fixed {
	width: 100%;
}

/* END Add to cart sticky fix */

/* Hide dietary icons on production items */
.c-selection__items .c-items__group .c-dietary__tags {
	display: none !important;
}

/* END Hide dietary icons on production items */

/* Checkout Button Width */
.c-checkout__fixed {
	max-width: 399px !important;
}

/* END Checkout Button Width */

/* FIX MORE BUTTON ON SAFARI */
.detailsBox.productSummaryText #productSubFeDetailText {
	display: block;
	position: relative;
	z-index: 0;
}

.detailsBox.productSummaryText {
	position: relative;
	padding-bottom: 1.75rem;
	overflow: hidden;
}

.detailsBox.productSummaryText .c-text__more.productSubFeDetail {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 10;
	display: inline-block;
	background: #fff;
	padding-left: .5rem;
	-webkit-transform: translateZ(0);
	will-change: transform;
}

.detailsBox.productSummaryText #productSubFeDetailText>p:last-child {
	margin-bottom: .5rem;
}

@supports (-webkit-touch-callout: none) {
	.detailsBox.productSummaryText .c-text__more.productSubFeDetail {
		position: static;
		margin-top: .25rem;
	}

	.detailsBox.productSummaryText {
		padding-bottom: 0;
	}
}

/* END FIX MORE BUTTON ON SAFARI */

/* Custom/Static Page Styling */
section:has(>.c-main__inner) {
	background: var(--light);
	min-height: calc(100vh - 200px);
}

.c-main__inner {
	background: var(--light);
	border: 1px solid var(--dark);
	border-radius: 0;
	padding: 2rem 3rem;
	max-width: 900px;
	margin: 2rem auto;
	box-shadow: 0 2px 12px rgba(29, 27, 27, 0.08);
}

.c-content__layout {
	font-family: var(--secondary-font);
	color: var(--dark);
	line-height: 1.7;
}

@media only screen and (max-width:48rem) {
	.c-main__inner {
		padding: 1.25rem 1rem;
		margin: 1rem;
	}
}

/* END Custom/Static Page Styling */

.brand-imagery_container {
        margin: 2rem 0.75rem 0;
}

.brand-imagery_container img.brand-image {
        max-width: 100%;
}