/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/*--------------------------------------------------------------
## Custom Fonts - Gotham
## Add custom Gotham fonts using @font-face
--------------------------------------------------------------*/
@font-face {
	font-family: 'Gotham';
	src: url('/wp-content/uploads/fonts/Gotham-Book.woff2') format('woff2'),
		 url('/wp-content/uploads/fonts/Gotham-Book.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham';
	src: url('/wp-content/uploads/fonts/Gotham-Medium.woff2') format('woff2'),
		 url('/wp-content/uploads/fonts/Gotham-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

/*--------------------------------------------------------------
## Apply Gotham Fonts
## Apply Gotham font to the entire site
--------------------------------------------------------------*/
body {
	font-family: 'Gotham', sans-serif;
	font-weight: 400; /* Gotham Book */
}

/* Full-width (alignfull) rows are sized with 100vw, which includes the scrollbar
   width on Windows — they end up ~15px wider than the page and cause a horizontal
   scrollbar. Clip the overflow ('clip' keeps position:sticky working, unlike 'hidden'). */
html,
body {
	overflow-x: clip;
}

h1, h2, h3, h4, h5, h6,
.site-title,
.widget-title,
.entry-title {
	font-family: 'Gotham', sans-serif;
	font-weight: 500; /* Gotham Medium */
}

.overlay {
    margin-top: -73px;
    margin-left: 27px;
}

.get-in-touch-seperator{
	margin-bottom: 40px;
    margin-top: 10px;
}

.gform-theme--api, .gform-theme--foundation {
    --gf-form-gap-y: 35px !important;
}

/**
 * Split Header Layout - Logo in the Middle
 * This creates a three-column layout: Navigation Left | Logo Center | Navigation/Widget Right
 * 
 * Works with both:
 * 1. Standard GeneratePress Header (set Navigation Location to "Float Right")
 * 2. GeneratePress Elements Header (create a Header Element)
 */

/* Ensure header uses flexbox for split layout */

.catering-menu{
	max-width: 129px;
    line-height: 15px;
}

.images-mobile{
	margin-bottom: -30px;
}


.split-header-layout .inside-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

/* Create equal flex containers on both sides for balanced layout */
.split-header-layout .inside-header::before {
	content: '';
	flex: 1 1 0;
	min-width: 0;
	order: 1;
}

.split-header-layout .inside-header::after {
	content: '';
	flex: 1 1 0;
	min-width: 0;
	order: 3;
}

/* Logo Container - Centered (between the two flex containers) */
.split-header-layout .site-logo,
.split-header-layout .site-branding,
.split-header-layout .site-branding-container {
	flex: 0 0 auto;
	order: 2;
	position: relative;
	z-index: 10;
	text-align: center;
}

/* Left Navigation - Positioned in the left flex area */
.split-header-layout.nav-float-right #site-navigation {
	order: 1;
	margin-right: auto;
	margin-left: 0;
	flex: 0 0 auto;
}

.split-header-layout.nav-float-left #site-navigation {
	order: 1;
	margin-right: auto;
	margin-left: 0;
	flex: 0 0 auto;
}

/* Right Widget/Navigation - Positioned in the right flex area */
.split-header-layout .header-widget {
	order: 3;
	margin-left: auto;
	flex: 0 0 auto;
}

/* Ensure logo stays centered even with navigation and widgets */
.split-header-layout .site-logo,
.split-header-layout .site-branding {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.split-header-layout .site-branding-container {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

/* Override the pseudo-elements approach for better logo centering */
.split-header-layout .inside-header {
	justify-content: flex-start;
}

.split-header-layout .inside-header::before {
	display: none;
}

.split-header-layout .inside-header::after {
	display: none;
}

/* Left side - Navigation */
.split-header-layout #site-navigation {
	order: 1;
	flex: 0 0 auto;
	margin-right: auto;
}

/* Center - Logo */
.split-header-layout .site-logo,
.split-header-layout .site-branding,
.split-header-layout .site-branding-container {
	order: 2;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}

/* Right side - Widget */
.split-header-layout .header-widget {
	order: 3;
	flex: 0 0 auto;
	margin-left: auto;
}/* Ensure proper spacing */
.split-header-layout .inside-header > * {
	flex-shrink: 0;
}

/* Logo sizing */
.split-header-layout .site-logo img,
.split-header-layout .site-logo .header-logo-image {
	max-width: 200px;
	height: 110px;
	width: auto;
}

.split-header-layout .page-hero .site-logo img,
.split-header-layout .page-hero .site-logo .header-logo-image {
	max-width: 200px;
	height: 110px;
	width: auto;
}

/* Elements Header Support - Split Layout */
.split-header-layout .page-hero {
	position: relative;
}

.split-header-layout .page-hero .inside-page-hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

/* Elements Header - Left Navigation */
.split-header-layout .page-hero .header-left-nav {
	order: 1;
	flex: 0 0 auto;
	margin-right: auto;
}

/* Elements Header - Centered Logo */
.split-header-layout .page-hero .site-logo,
.split-header-layout .page-hero .site-branding,
.split-header-layout .page-hero .site-branding-container {
	order: 2;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}



/* Increase header height */
.header-desktop,
.header-desktop.site-header,
.site-header.header-desktop {
	min-height: 140px;
	padding-top: 15px;
}

.header-desktop .wp-block-columns,
.header-desktop .inside-header {
	padding-top: 30px;
	padding-bottom: 30px;
	min-height: 120px;
}

/* Elements Header - Right Widget/Navigation */
.split-header-layout .page-hero .header-right-nav,
.split-header-layout .page-hero .header-widget {
	order: 3;
	flex: 0 0 auto;
	margin-left: auto;
}

/* Elements Header - Navigation inside */
.split-header-layout .page-hero #site-navigation {
	order: 1;
	flex: 0 0 auto;
	margin-right: auto;
}

/* Desktop: Show both menus */
.split-header-layout .header-left-menu,
.split-header-layout .header-right-menu,
.split-header-layout .wp-block-navigation.header-left-menu,
.split-header-layout .wp-block-navigation.header-right-menu,
.split-header-layout .header-left-menu .wp-block-navigation,
.split-header-layout .header-right-menu .wp-block-navigation {
	display: block;
	margin-top: 15px;
}

/* Make menu items horizontal (not stacked) */
.split-header-layout .header-left-menu ul,
.split-header-layout .header-right-menu ul,
.split-header-layout .header-left-menu .wp-block-navigation__responsive-container-content ul,
.split-header-layout .header-right-menu .wp-block-navigation__responsive-container-content ul,
.split-header-layout .wp-block-navigation.header-left-menu ul,
.split-header-layout .wp-block-navigation.header-right-menu ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}

/* Align left menu to the right */
.split-header-layout .header-left-menu,
.split-header-layout .wp-block-navigation.header-left-menu {
	text-align: right;
}

.split-header-layout .header-left-menu ul,
.split-header-layout .header-left-menu .wp-block-navigation__responsive-container-content ul,
.split-header-layout .wp-block-navigation.header-left-menu ul {
	justify-content: flex-end;
}

/* Align right menu to the left */
.split-header-layout .header-right-menu,
.split-header-layout .wp-block-navigation.header-right-menu {
	text-align: left;
}

.split-header-layout .header-right-menu ul,
.split-header-layout .header-right-menu .wp-block-navigation__responsive-container-content ul,
.split-header-layout .wp-block-navigation.header-right-menu ul {
	justify-content: flex-start;
}

.split-header-layout .header-left-menu li,
.split-header-layout .header-right-menu li,
.split-header-layout .header-left-menu .wp-block-navigation-item,
.split-header-layout .header-right-menu .wp-block-navigation-item {
	display: inline-block;
	margin: 0;
	padding: 0;
}

.split-header-layout .header-left-menu a,
.split-header-layout .header-right-menu a {
	display: block;
	padding: 10px 15px;
	text-decoration: none;
}

/* Ensure Navigation blocks are visible */
.split-header-layout .page-hero .header-left-menu,
.split-header-layout .page-hero .header-right-menu,
.split-header-layout .page-hero .wp-block-navigation.header-left-menu,
.split-header-layout .page-hero .wp-block-navigation.header-right-menu {
	display: block;
	margin-top: 10px;
}

/* Make menu items horizontal in Elements Header */
.split-header-layout .page-hero .header-left-menu ul,
.split-header-layout .page-hero .header-right-menu ul,
.split-header-layout .page-hero .header-left-menu .wp-block-navigation__responsive-container-content ul,
.split-header-layout .page-hero .header-right-menu .wp-block-navigation__responsive-container-content ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}

/* Align left menu to the right in Elements Header */
.split-header-layout .page-hero .header-left-menu,
.split-header-layout .page-hero .wp-block-navigation.header-left-menu {
	text-align: right;
}

.split-header-layout .page-hero .header-left-menu ul,
.split-header-layout .page-hero .header-left-menu .wp-block-navigation__responsive-container-content ul {
	justify-content: flex-end;
}

/* Align right menu to the left in Elements Header */
.split-header-layout .page-hero .header-right-menu,
.split-header-layout .page-hero .wp-block-navigation.header-right-menu {
	text-align: left;
}

.split-header-layout .page-hero .header-right-menu ul,
.split-header-layout .page-hero .header-right-menu .wp-block-navigation__responsive-container-content ul {
	justify-content: flex-start;
}

.split-header-layout .page-hero .header-left-menu li,
.split-header-layout .page-hero .header-right-menu li {
	display: inline-block;
	margin: 0;
	padding: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {

	.split-header-layout .site-logo img{
		float: left;
		padding-left: 20px;
	}

	.split-header-layout .inside-header {
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.split-header-layout .site-logo,
	.split-header-layout .site-branding,
	.split-header-layout .site-branding-container {
		position: relative;
		left: auto;
		transform: none;
		order: 1;
		width: 100%;
		text-align: center;
		margin-bottom: 15px;
	}
	
	/* Hide desktop menus on mobile - but show if it's the mobile menu */
	.split-header-layout .header-left-menu:not(.header-mobile-menu),
	.split-header-layout .header-right-menu:not(.header-mobile-menu),
	.split-header-layout .wp-block-navigation.header-left-menu:not(.header-mobile-menu),
	.split-header-layout .wp-block-navigation.header-right-menu:not(.header-mobile-menu),
	.split-header-layout .header-left-menu:not(.header-mobile-menu) .wp-block-navigation,
	.split-header-layout .header-right-menu:not(.header-mobile-menu) .wp-block-navigation {
		display: none !important;
	}
	
	/* Show the mobile menu when it's open */
	body.menu-open .split-header-layout .header-mobile-menu,
	body.menu-open .header-mobile-menu,
	body.menu-open .split-header-layout .header-left-menu.header-mobile-menu,
	body.menu-open .split-header-layout .header-right-menu.header-mobile-menu {
		display: block !important;
		visibility: visible !important;
	}
	
	/* Mobile: Stack menu items vertically - only when menu is open */
	body.menu-open .split-header-layout .header-mobile-menu ul,
	body.menu-open .split-header-layout .header-mobile-menu .wp-block-navigation__responsive-container-content ul {
		display: block;
		flex-direction: column;
	}
	
	body.menu-open .split-header-layout .header-mobile-menu li {
		display: block;
		width: 100%;
	}
	
	.split-header-layout #site-navigation {
		order: 2;
		width: 100%;
		margin: 0;
	}
	
	.split-header-layout .header-widget {
		order: 3;
		width: 100%;
		margin: 15px 0 0;
		text-align: center;
	}
	
	/* Elements Header Mobile */
	.split-header-layout .page-hero .inside-page-hero {
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.split-header-layout .page-hero .site-logo,
	.split-header-layout .page-hero .site-branding,
	.split-header-layout .page-hero .site-branding-container {
		position: relative;
		left: auto;
		transform: none;
		order: 1;
		width: 100%;
		text-align: center;
		margin-bottom: 15px;
	}
	
	/* Hide desktop menus in Elements Header on mobile */
	.split-header-layout .page-hero .header-left-menu,
	.split-header-layout .page-hero .header-right-menu,
	.split-header-layout .page-hero .wp-block-navigation.header-left-menu,
	.split-header-layout .page-hero .wp-block-navigation.header-right-menu {
		display: none !important;
	}
	
	/* Show combined mobile menu in Elements Header */
	.split-header-layout .page-hero .header-mobile-menu {
		display: block;
		order: 2;
		width: 100%;
		margin: 0;
	}
	
	.split-header-layout .page-hero .header-left-nav,
	.split-header-layout .page-hero #site-navigation {
		order: 2;
		width: 100%;
		margin: 0;
	}
	
	.split-header-layout .page-hero .header-right-nav,
	.split-header-layout .page-hero .header-widget {
		order: 3;
		width: 100%;
		margin: 15px 0 0;
		text-align: center;
	}
}

/* Hide mobile menu on desktop */
.split-header-layout .header-mobile-menu {
	display: none;
}

/* Desktop: force block navigation header menus to display horizontally (WP 6.9 fix) */
@media (min-width: 769px) {
	.header-desktop.wp-block-columns {
		display: flex !important;
		flex-wrap: nowrap !important;
	}

	.header-desktop .header-left-menu,
	.header-desktop .header-right-menu {
		flex: 1 1 42%;
	}

	.header-desktop .header-left-menu .wp-block-navigation__responsive-container-open,
	.header-desktop .header-right-menu .wp-block-navigation__responsive-container-open,
	.header-desktop .header-left-menu .wp-block-navigation__responsive-container-close,
	.header-desktop .header-right-menu .wp-block-navigation__responsive-container-close {
		display: none !important;
	}

	.header-desktop .header-left-menu .wp-block-navigation__responsive-container,
	.header-desktop .header-right-menu .wp-block-navigation__responsive-container {
		display: block !important;
		position: static !important;
		width: 100% !important;
		background: transparent !important;
		padding: 0 !important;
	}

	.header-desktop .header-left-menu .wp-block-navigation__responsive-container-content,
	.header-desktop .header-right-menu .wp-block-navigation__responsive-container-content {
		display: flex !important;
		padding: 0 !important;
	}

	.header-desktop .header-left-menu .wp-block-navigation__container,
	.header-desktop .header-right-menu .wp-block-navigation__container {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: wrap !important;
		gap: 0;
	}

	.header-desktop .header-left-menu .wp-block-navigation__container {
		justify-content: flex-end;
	}

	.header-desktop .header-right-menu .wp-block-navigation__container {
		justify-content: flex-start;
	}

	.mobile-menu-toggle {
		display: none !important;
	}
}

@media (min-width: 769px) {
	.split-header-layout .header-mobile-menu {
		display: none !important;
	}
}

/*--------------------------------------------------------------
## Footer Widget Layout - Custom Widths
## Widget 1: 25% | Widget 2: 25% | Widget 3: 50%
--------------------------------------------------------------*/
.site-footer .inside-footer-widgets > .footer-widget-1 {
	flex: 0 0 25% !important;
	max-width: 25% !important;
	width: 25% !important;
}

.site-footer .inside-footer-widgets > .footer-widget-2 {
	flex: 0 0 25% !important;
	max-width: 25% !important;
	width: 25% !important;
}

.site-footer .inside-footer-widgets > .footer-widget-3 {
	flex: 0 0 50% !important;
	max-width: 50% !important;
	width: 50% !important;
	background-color: #ffffff !important;
}

/* Responsive: Stack widgets on mobile */
@media (max-width: 768px) {
	.site-footer .inside-footer-widgets {
		flex-direction: column !important;
	}
	
	.site-footer .inside-footer-widgets > .footer-widget-1,
	.site-footer .inside-footer-widgets > .footer-widget-2,
	.site-footer .inside-footer-widgets > .footer-widget-3 {
		flex: 0 0 100% !important;
		max-width: 100% !important;
		width: 100% !important;
	}
}

/*--------------------------------------------------------------
## Header Pattern Background
## Repeating pattern image under the custom header
--------------------------------------------------------------*/
.header-desktop,
.header-desktop.site-header,
.site-header.header-desktop {
	position: relative;
	background-color: #ffffff;
}

.header-desktop::after,
.header-desktop.site-header::after,
.site-header.header-desktop::after {
	content: '';
	display: block;
	width: 100%;
	height: 39px;
	background-image: url('/wp-content/uploads/2025/11/top-1.png');
	background-repeat: repeat-x;
	background-position: top center;
	background-size: auto 39px;
	position: absolute;
	left: 0;
	bottom: -38px;
	z-index: 1;
}

/*--------------------------------------------------------------
## Footer Wave Pattern
## Repeating wave pattern inside the footer
--------------------------------------------------------------*/

.widget ul li{
	line-height: 14px;
}


.footer-widgets,
.footer-widgets-container {
	position: relative;
}

.footer-widgets::before,
.footer-widgets-container::before {
	content: '';
	display: block;
	width: 100%;
	height: 11px;
	background-image: url('/wp-content/uploads/2025/11/wave-1.png');
	background-repeat: repeat-x;
	background-position: top center;
	background-size: auto 11px;
	position: absolute;
	left: 0;
	top: 20px;
	z-index: 1;
}

.footer-widgets::after,
.footer-widgets-container::after {
	content: '';
	display: block;
	width: 100%;
	height: 11px;
	background-image: url('/wp-content/uploads/2025/11/wave-1.png');
	background-repeat: repeat-x;
	background-position: top center;
	background-size: auto 11px;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}

/* Add padding to footer widgets to account for wave patterns */
.footer-widgets-container {
	padding-top: 51px !important; /* 40px original + 11px for wave */
	padding-bottom: 51px !important; /* 40px original + 11px for wave */
}

.site-footer .inside-footer-widgets > .footer-widget-3 .widget_block.widget_text{
	text-transform: uppercase;
	padding-top: 20px;
}

#gform_submit_button_1{
	background-color: rgba(171, 133, 68, 0);
	border: 2px solid #ac8745 !important;
	color: #ac8745;
	box-shadow: none !important;
}

.contact-form{
	border-radius: 8px;
}

input#input_1_1::placeholder {
	color: #ac8745 !important;
}

input, textarea{
	    box-shadow: none !important;
}

.newsletter_footer .ginput_container.ginput_container_email{
border-bottom: solid 2px #ac8745;
}

.newsletter_footer input{
	border-top:none;

	border:none !important;
	box-shadow: none !important;
}


/*--------------------------------------------------------------
## WooCommerce Product Cards
## Ensure individual products use a white background
--------------------------------------------------------------*/

.wc-block-mini-cart__template-part a.wc-block-components-product-name {
	text-decoration: none !important;
    font-weight: 500;
}

.woocommerce-cart .product-name a{
	    color: #ac864b !important;
	    text-decoration: none !important;
}

.woocommerce-cart .woocommerce button.button{
	color: #ffffff !important;
}

.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents th{
	border-bottom: 1px solid #ac8745 !important;
}

.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th{
	 font-weight: 500;
}

.woocommerce form .form-row label{
color: #ac8745 !important;
}

.woocommerce table.shop_table th {
    font-weight: 500;
    text-transform: uppercase;
}

.woocommerce-billing-fields__field-wrapper{
	color: #ac8745 !important;
}

.entry-title{
	font-size: 20px;
	text-transform: uppercase;
}

:where(.woocommerce) .select2-container .select2-selection--single .select2-selection__rendered{
	line-height: 2em !important;
	border: 1px solid #ac8745 !important;
}

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea{
	line-height: 2em !important;
	border: 1px solid #ac8745 !important;
}

.shop_table.woocommerce-checkout-review-order-table{
	background-color: #fff !important;
	border: 1px solid #ac8745 !important;
	border-radius: 6px !important;
	color:#ac8745 !important;
}

.woocommerce-checkout.woocommerce-page h3{
	display: none;
}

.woocommerce table.shop_table th{
background-color: transparent !important;
}

.woocommerce table.shop_table th.product-name, .woocommerce table.shop_table th.product-total{
border-bottom: 1px solid #ac8745 !important;
}


.wp-block-woocommerce-checkout.alignwide.wc-block-checkout{
	margin:5px !important;
	width: 100% !important;
}

.wc-block-components-totals-item.wc-block-mini-cart__footer-subtotal .wc-block-components-totals-item__label{
	font-weight: 400;
}

.wp-block-woocommerce-mini-cart-contents a.wc-block-components-product-name{
 color: #ac8745;
}

.wc-block-mini-cart__footer-actions .wc-block-components-button__text{
	font-size: 15px !important;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
    min-height: 42px !important;
}

.wp-block-woocommerce-filled-mini-cart-contents-block{
	color: #ac8745;
}

h2.wc-block-mini-cart__title{
	font-size: 20px !important;
    text-transform: uppercase;
}

.single-product .product_title.entry-title{
	text-transform: uppercase;

}

.single-product .price{
	color: var(--contrast) !important;
	padding-top: 10px;
}

.single-product .woocommerce-product-details__short-description{
	color: var(--contrast) !important;
}

.single-product hr{
	background-color: var(--contrast);
	margin-bottom: 24px;
	margin-top: 34px;
}

.single-product .woocommerce-tabs.wc-tabs-wrapper{
	display: none;
}

.single-product .related.products h2{
	    font-size: 21px;
	    padding-top: 43px;

}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger::before{
	border: 2px solid #ac864b;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger::after{
background: #ac864b;
}

.woocommerce div.product form.cart .variations{
	margin-top: 20px;
}

.woocommerce div.product form.cart .variations th {
    border: 0;
    line-height: 2em;
    text-align: left;
    padding-left: 0px;
 }

button.single_add_to_cart_button.button.alt.disabled.wc-variation-selection-needed {
    font-size: 16px;
    padding: 10px 24px;
}

@media (max-width: 768px) {
	.woocommerce div.product form.cart div.quantity {
		float: left;
		margin: 0 7px 15px 0;
	}
}

.do-quantity-buttons form .quantity:not(.buttons-added):not(.hidden):after, .do-quantity-buttons form .quantity:not(.buttons-added):not(.hidden):before, .woocommerce form .quantity.buttons-added .minus, .woocommerce form .quantity.buttons-added .plus{
	border: 1px #787878 solid !important;
}

.woocommerce form .quantity.buttons-added .qty {
	border-top: 1px #787878 solid !important;
	border-bottom: 1px #787878 solid !important;
}

 .product_meta{
 	display: none;
 }

 .woocommerce div.product form.cart .variations label{
 	font-weight: 400;
 }

 .woocommerce div.product form.cart .variations select{
 	border:1px #787878 solid;
 }

.woocommerce div.product .product_title {
	font-size: 25px;
}

.woocommerce ul.products li.product .price, .woocommerce div.product p.price{
   margin-bottom: 12px; 
}

.woocommerce-page .inside-article{
	padding: 20px !important;
}


.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.product.type-product {
		padding: 0;
	border-radius: 2px;
	overflow: hidden;
}

.wc-product-image{
    margin-bottom: -7px !important;
} 

.woocommerce-loop-product__title{
    padding-top: 20px !important;
    padding-bottom: 6px !important;
}

.inside-wc-product-image{
    margin-bottom: 0px !important;
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link>:not(:first-child){
    margin-top:0px !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
	display: block;
	padding-left: 20px;
	padding-right: 20px;
	border-left: 1px solid #ac8745;
	border-right: 1px solid #ac8745;
    background-color: #ffffff;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	margin-bottom: 10px;
	font-weight: 500;
	border-top: 0px solid #ac8745;
	padding-top: 15px;
    background-color: #ffffff;
}

.woocommerce ul.products li.product .price {
	margin-bottom: 0 !important;
	padding-bottom: 15px;
	font-weight: 500;
	border-bottom: 1px solid #ac8745;
}

/* Hide add-to-cart buttons on shop/archive pages */
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .button {
	display: none !important;
}

/*--------------------------------------------------------------
## Product Category Filters
--------------------------------------------------------------*/
.product-category-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 30px;
	padding: 0px 0;
	justify-content: center;
}

.category-filter-item {
	padding: 0 0 5px 0;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid transparent;
	color: #ac8745;
	text-decoration: none;
	font-weight: 400;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.category-filter-item:hover {
	color: #ac8745;
	border-bottom-color: #ac8745;
}

.category-filter-item.active {
	color: #ac8745;
	border-bottom-color: #ac8745;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.product-category-filters {
		gap: 0px;
	}
	
	.category-filter-item {
		padding: 13px 20px 4px 20px;
		width: 100%;
		margin:0px 30px;
		font-size: 18px;
		text-align: center;
	}

	
}


.oa-slider .oa-slide-inner .timeless{
	position: absolute;
    top: 350px;
    left: 70px;
    z-index: 5;
    max-width: 500px !important;
}

/* ==========================================================================
   HOMEPAGE BANNER MOBILE ADJUSTMENTS
   ========================================================================== */

   /* Full-width image mode - add header height offset */
.oa-slider.oa-slider-height-auto,
.oa-slider.oa-slider-height-image {
	margin-top: 140px; /* Account for header height */
}

/* Mobile image display - hide mobile image on desktop, show desktop image */
.oa-slide .oa-slide-bg-image-desktop {
	display: block !important;
}

.oa-slide .oa-slide-bg-image-mobile {
	display: none !important;
}

/* Mobile slider height adjustments */
@media (max-width: 768px) {
	/* Switch to mobile image on mobile devices */
	.oa-slide .oa-slide-bg-image-desktop {
		display: none !important;
	}
	
	.oa-slide .oa-slide-bg-image-mobile {
		display: block !important;
	}
	
	/* Reduce slider height on mobile - adjust vh value as needed */
	.oa-slider.oa-slider-height-100 {
		height: 85vh !important;
		min-height: 600px;
	}

		/* Full-width image mode - maintain aspect ratio on mobile */
	.oa-slider.oa-slider-height-auto .oa-slide-bg-image,
	.oa-slider.oa-slider-height-image .oa-slide-bg-image {
		background-size: 100% auto;
	}
	
	/* Adjust timeless element positioning for mobile */
	.oa-slider .oa-slide-inner .timeless {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		margin: 20px auto;
		max-width: 90% !important;
		text-align: center;
	}
	
	/* Adjust slide content padding for mobile */
	.oa-slider .oa-slide-content {
		padding: 40px 20px 80px !important;
	}
	
	/* Better text sizing on mobile */
	.oa-slider .oa-slide-inner h1 {
		font-size: 2em !important;
		line-height: 1.2;
	}
	
	.oa-slider .oa-slide-inner h2 {
		font-size: 1.5em !important;
		line-height: 1.3;
	}
	
	.oa-slider .oa-slide-inner p {
		font-size: 16px !important;
		line-height: 1.5;
	}
}

/* Smaller mobile devices */
@media (max-width: 480px) {
	/* Even smaller height for very small screens */
	.oa-slider.oa-slider-height-100 {
		height: 75vh !important;
		min-height: 500px;
	}
	
	.oa-slider .oa-slide-inner .timeless {
		max-width: 95% !important;
		margin: 15px auto;
	}
	
	.oa-slider .oa-slide-content {
		padding: 30px 15px 70px !important;
	}
	
	.oa-slider .oa-slide-inner h1 {
		font-size: 1.75em !important;
	}
	
	.oa-slider .oa-slide-inner h2 {
		font-size: 1.25em !important;
	}
}

.home-categories {
    overflow: hidden;
    align-content: end !important;
    padding-bottom: 0px;
        min-height: 500px !important;
} 

.wc-block-featured-category .wc-block-featured-category__background-image{
	 object-fit: contain !important;
}

.wc-block-featured-category__inner-blocks{
	padding: 0 48px 22px !important;
}

.wp-block-featured-category__background-image {
    object-fit: contain !important;
}

.home-categories .wc-block-featured-category__title{
	display:none;
}

.home-categories .wp-block-button__link.wp-element-button{
	border-radius: 3px !important;
    padding: 5px 40px;
    border: 2px solid #fff;
    background-color: transparent;
    color: #ac8745;
    min-width: 220px;
}

.row-categories-home{
	    gap: 4em !important;
}

.wc-block-featured-category__link{
	padding: 0 30px 16px !important;
}

.home-categories .wp-block-button__link.wp-element-button:hover{
	border:none !important;
}

.with-white-pattern{
	background-image: url(https://greybird.openagency.co.za/wp-content/uploads/2025/12/background-pattern-1.png);
	background-repeat: repeat-x;
	background-position: bottom;
}

/* ==========================================================================
   MOBILE BURGER MENU ICON
   ========================================================================== */

/* Burger icon button - hidden on desktop */
.mobile-menu-toggle {
	display: none;
	background: transparent !important;
	border: none !important;
	cursor: pointer;
	padding: 10px;
	position: relative;
	width: 50px;
	height: 50px;
	z-index: 1000;
}

/* Burger icon bars */
.mobile-menu-toggle .burger-icon {
	display: block;
	width: 30px;
	height: 3px;
	background-color: #8b6f47;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease;
}

.mobile-menu-toggle .burger-icon::before,
.mobile-menu-toggle .burger-icon::after {
	content: '';
	display: block;
	width: 30px;
	height: 3px;
	background-color: #8b6f47;
	position: absolute;
	left: 0;
	transition: all 0.3s ease;
}

.mobile-menu-toggle .burger-icon::before {
	top: -8px;
}

.mobile-menu-toggle .burger-icon::after {
	bottom: -8px;
}

/* Active state - X icon */
.mobile-menu-toggle.active .burger-icon {
	background-color: transparent;
}

.mobile-menu-toggle.active .burger-icon::before {
	top: 0;
	transform: rotate(45deg);
	background-color: #ffffff !important;
}

.mobile-menu-toggle.active .burger-icon::after {
	bottom: 0;
	transform: rotate(-45deg);
	background-color: #ffffff !important;
}

/* When active, change burger icon color to white */
body.menu-open .mobile-menu-toggle .burger-icon::before,
body.menu-open .mobile-menu-toggle .burger-icon::after {
	background-color: #ffffff !important;
}

/* Show burger icon on mobile */
@media (max-width: 768px) {

.type-column{
	max-width: 300px !important;
}

.mobile-slider{
	padding-left: 3em;
	padding-right: 2em;
}

	.mobile-menu-toggle {
		display: block !important;
		order: 999;
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
		z-index: 10000;
		visibility: visible;
		opacity: 1;
	}
	
	/* When menu is open, position button on top of dropdown */
	body.menu-open .mobile-menu-toggle {
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
		z-index: 10001;
	}
	
	/* Style for mini-cart above burger menu - leave space for it */
	.mobile-mini-cart,
	.woocommerce-mini-cart,
	.wp-block-woocommerce-mini-cart {
		position: fixed;
		right: 5%;
		top: 20px;
		z-index: 10000;
	}
	
	/* Style for mini-cart above burger menu */
	.mobile-mini-cart {
		position: fixed;
		right: 5%;
		top: 20px;
		z-index: 10000;
		display: block;
	}
	
	/* Hide mobile menu by default */
	.split-header-layout .header-mobile-menu,
	.header-mobile-menu,
	.wp-block-navigation.header-mobile-menu {
		display: none !important;
		visibility: hidden !important;
		opacity: 0 !important;
		max-height: 0 !important;
		overflow: hidden !important;
	}
	
	/* Show menu when toggle is active - try multiple selectors */
	body.menu-open .split-header-layout .header-mobile-menu,
	body.menu-open .header-mobile-menu,
	body.menu-open .wp-block-navigation.header-mobile-menu,
	body.menu-open [class*="header-mobile-menu"] {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
		position: fixed !important;
		top: 0 !important;
		left: auto !important;
		right: 0 !important;
		transform: none !important;
		width: 90% !important;
		max-width: 90% !important;
		background-color: #ac8745 !important;
		padding: 20px !important;
		border-top: 1px solid #e0e0e0 !important;
		z-index: 9999 !important;
		box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
		max-height: 1000px !important;
		overflow: visible !important;
		min-height: auto !important;
		flex-basis: 90% !important;
		margin-top: 0 !important;
	}
	
	/* Make sure the nav element inside is visible */
	body.menu-open .header-mobile-menu > nav,
	body.menu-open .header-mobile-menu .wp-block-navigation {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
		width: 100% !important;
		height: auto !important;
	}
	
	/* Hide WordPress Navigation block's default responsive button on mobile */
	body.menu-open .header-mobile-menu .wp-block-navigation__responsive-container-open,
	.header-mobile-menu .wp-block-navigation__responsive-container-open {
		display: none !important;
	}
	
	/* Show navigation responsive container when menu is open */
	body.menu-open .split-header-layout .header-mobile-menu .wp-block-navigation__responsive-container,
	body.menu-open .wp-block-navigation.header-mobile-menu .wp-block-navigation__responsive-container,
	body.menu-open .header-mobile-menu .wp-block-navigation__responsive-container {
		display: block !important;
		position: static !important;
		visibility: visible !important;
		opacity: 1 !important;
		background: transparent !important;
		padding: 0 !important;
		margin: 0 !important;
		transform: none !important;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		bottom: auto !important;
		width: 100% !important;
		height: auto !important;
		max-height: none !important;
		overflow: visible !important;
		z-index: auto !important;
	}
	
	/* Make sure the responsive close wrapper is visible */
	body.menu-open .header-mobile-menu .wp-block-navigation__responsive-close {
		display: block !important;
		position: static !important;
		visibility: visible !important;
		opacity: 1 !important;
		width: 100% !important;
		height: auto !important;
	}
	
	/* Show the responsive dialog - override WordPress modal styles completely */
	body.menu-open .header-mobile-menu .wp-block-navigation__responsive-dialog {
		position: static !important;
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
		background: transparent !important;
		padding: 0 !important;
		margin: 0 !important;
		width: 100% !important;
		height: auto !important;
		transform: none !important;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		bottom: auto !important;
		z-index: auto !important;
		max-width: 100% !important;
		max-height: none !important;
	}
	
	/* Override WordPress modal backdrop/overlay */
	body.menu-open .header-mobile-menu .wp-block-navigation__responsive-container.has-modal-open::before,
	body.menu-open .header-mobile-menu .wp-block-navigation__responsive-container.has-modal-open::after {
		display: none !important;
	}
	
	/* Hide the close button (we use our burger) */
	body.menu-open .header-mobile-menu .wp-block-navigation__responsive-container-close {
		display: none !important;
	}
	
	/* Show menu content when open */
	body.menu-open .split-header-layout .header-mobile-menu .wp-block-navigation__responsive-container-content,
	body.menu-open .wp-block-navigation.header-mobile-menu .wp-block-navigation__responsive-container-content,
	body.menu-open .header-mobile-menu .wp-block-navigation__responsive-container-content {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
		position: static !important;
		padding: 0 !important;
		margin: 0 !important;
		width: 100% !important;
		height: auto !important;
		max-height: none !important;
		overflow: visible !important;
		transform: none !important;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		bottom: auto !important;
	}
	
	/* Show the navigation list */
	body.menu-open .header-mobile-menu .wp-block-navigation__container,
	body.menu-open .header-mobile-menu .wp-block-navigation__container.is-responsive {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
		flex-direction: column !important;
	}
	
	/* Force all nested elements to be visible */
	body.menu-open .header-mobile-menu .wp-block-navigation__responsive-close {
		display: block !important;
		position: static !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
	
	/* Make sure all navigation items are visible */
	body.menu-open .header-mobile-menu .wp-block-navigation-item,
	body.menu-open .header-mobile-menu .wp-block-navigation-link {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
	
	/* Make sure labels are visible */
	body.menu-open .header-mobile-menu .wp-block-navigation-item__label,
	body.menu-open .header-mobile-menu .wp-block-navigation-item__label span {
		display: inline !important;
		visibility: visible !important;
		opacity: 1 !important;
		color: #ffffff !important;
		font-size: 20px !important;
		font-weight: normal !important;
		text-transform: uppercase !important;
		text-align: left !important;
	}
	
	/* Ensure header is positioned relative so absolute menu works */
	.site-header,
	.header-desktop {
		position: relative !important;
	}
	
	/* Style menu items when open */
	body.menu-open .split-header-layout .header-mobile-menu ul,
	body.menu-open .split-header-layout .header-mobile-menu .wp-block-navigation__responsive-container-content ul,
	body.menu-open .header-mobile-menu ul,
	body.menu-open .header-mobile-menu .wp-block-navigation__responsive-container-content ul,
	body.menu-open .header-mobile-menu .wp-block-navigation__container,
	body.menu-open .oa-mobile-menu-list {
		list-style: none !important;
		margin: 0 !important;
		padding: 0 !important;
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
	
	body.menu-open .split-header-layout .header-mobile-menu li,
	body.menu-open .header-mobile-menu li,
	body.menu-open .header-mobile-menu .wp-block-navigation-item,
	body.menu-open .oa-mobile-menu-list li {
		display: block !important;
		width: 100%;
		border-bottom: none !important;
		margin: 0 !important;
		padding: 0 !important;
	}
	
	body.menu-open .split-header-layout .header-mobile-menu a,
	body.menu-open .header-mobile-menu a,
	body.menu-open .header-mobile-menu .wp-block-navigation-item__content,
	body.menu-open .header-mobile-menu .wp-block-navigation-item__label,
	body.menu-open .oa-mobile-menu-list a {
		display: block !important;
		padding: 15px 20px !important;
		color: #ffffff !important;
		text-decoration: none !important;
		transition: background-color 0.3s ease;
		font-size: 20px !important;
		visibility: visible !important;
		opacity: 1 !important;
		font-weight: normal !important;
		line-height: 1.5 !important;
		text-transform: uppercase !important;
		text-align: left !important;
	}
	
	/* Force visibility of all text elements - very aggressive */
	body.menu-open .header-mobile-menu * {
		visibility: visible !important;
		opacity: 1 !important;
	}
	
	/* Override any height/width restrictions */
	body.menu-open .header-mobile-menu .wp-block-navigation__responsive-container,
	body.menu-open .header-mobile-menu .wp-block-navigation__responsive-dialog,
	body.menu-open .header-mobile-menu .wp-block-navigation__responsive-container-content {
		min-height: auto !important;
		height: auto !important;
		max-height: none !important;
		overflow: visible !important;
	}
	
	/* Specifically target text/label elements */
	body.menu-open .header-mobile-menu .wp-block-navigation-item__label,
	body.menu-open .header-mobile-menu .wp-block-navigation-item__content span,
	body.menu-open .header-mobile-menu .wp-block-navigation-item__content,
	body.menu-open .header-mobile-menu .wp-block-navigation-item__label span {
		display: inline-block !important;
		visibility: visible !important;
		opacity: 1 !important;
		color: #ffffff !important;
		font-size: 20px !important;
		width: auto !important;
		height: auto !important;
		line-height: normal !important;
		text-transform: uppercase !important;
		text-align: left !important;
	}
	
	/* Force all text nodes to be visible - override any inherited styles */
	body.menu-open .header-mobile-menu span,
	body.menu-open .header-mobile-menu .wp-block-navigation-item__content *,
	body.menu-open .header-mobile-menu .wp-block-navigation-item__label * {
		display: inline !important;
		visibility: visible !important;
		opacity: 1 !important;
		color: #ffffff !important;
		text-transform: uppercase !important;
		text-align: left !important;
	}
	
	/* Nuclear option - force all elements inside to show text */
	body.menu-open .header-mobile-menu .wp-block-navigation__responsive-container-content,
	body.menu-open .header-mobile-menu .wp-block-navigation__responsive-container-content * {
		color: #ffffff !important;
		font-size: 20px !important;
		line-height: 1.5 !important;
	}
	
	/* Make sure the actual text content is visible */
	body.menu-open .header-mobile-menu {
		color: #ffffff !important;
	}
	
	body.menu-open .header-mobile-menu *:not(.mobile-menu-toggle):not(.mobile-menu-toggle *) {
		color: inherit !important;
	}
	
	/* Make sure links are visible and clickable */
	body.menu-open .header-mobile-menu .wp-block-navigation-item a,
	body.menu-open .header-mobile-menu .wp-block-navigation-link a {
		display: block !important;
		padding: 15px 20px !important;
		color: #ffffff !important;
		text-decoration: none !important;
		visibility: visible !important;
		opacity: 1 !important;
		pointer-events: auto !important;
		cursor: pointer !important;
		font-size: 20px !important;
		text-transform: uppercase !important;
		text-align: left !important;
	}
	
	body.menu-open .split-header-layout .header-mobile-menu a:hover,
	body.menu-open .header-mobile-menu a:hover,
	body.menu-open .header-mobile-menu .wp-block-navigation-item__content:hover,
	body.menu-open .oa-mobile-menu-list a:hover {
		background-color: rgba(255, 255, 255, 0.1) !important;
		color: #ffffff !important;
	}
	
	/* Ensure navigation items are visible */
	body.menu-open .header-mobile-menu .wp-block-navigation-item,
	body.menu-open .header-mobile-menu .wp-block-navigation-link {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
	
	/* Fallback menu styles */
	.oa-mobile-menu-fallback {
		display: none !important;
	}
	
	body.menu-open .oa-mobile-menu-fallback {
		display: block !important;
	}
	
	/* Adjust logo position - no need for left margin since burger is on right */
	.split-header-layout .site-logo,
	.split-header-layout .site-branding,
	.split-header-layout .site-branding-container {
		margin-left: 0;
	}
	
		/* Ensure header has relative positioning for absolute burger */
	.site-header,
	.site-header .inside-header,
	.header-desktop,
	.header-desktop .inside-header,
	.split-header-layout .inside-header {
		position: relative !important;
		min-height: 60px;
	}
	
	/* Don't add burger to page-hero (banner section) */
	.page-hero .mobile-menu-toggle,
	.split-header-layout .page-hero .inside-page-hero .mobile-menu-toggle {
		display: none !important;
	}
}

/* ==========================================================================
   MOBILE SLIDER FOR 3-COLUMN SECTIONS
   ========================================================================== */

/* Hide arrows on desktop by default */
.mobile-slider-arrow {
	display: none !important;
}

@media (min-width: 769px) {
	.hide-desktop{
		display: none !important;
	}
}


/* Convert 3-column section to horizontal slider on mobile */
@media (max-width: 768px) {
	/* Show arrows on mobile */
	.mobile-slider-arrow {
		display: flex !important;
	}
	/* Target WordPress core Columns block with the mobile-slider class */
	.mobile-slider.wp-block-columns,
	.wp-block-columns.mobile-slider {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		width: 100%;
		padding-bottom: 10px;
		justify-content: flex-start;
	}
	
	/* Target GenerateBlocks Pro container with the mobile-slider class */
	.mobile-slider,
	.gb-block-container.mobile-slider,
	[class*="gb-block-container"].mobile-slider,
	.gb-grid-wrapper.mobile-slider {
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap !important;
		width: 100%;
		padding-bottom: 10px;
	}
	
	/* Make WordPress core columns scrollable items - full width */
	.mobile-slider.wp-block-columns .wp-block-column,
	.wp-block-columns.mobile-slider .wp-block-column {
		flex: 0 0 100% !important;
		max-width: 100% !important;
		width: 100% !important;
		scroll-snap-align: center;
		margin-right: 0;
		scroll-snap-stop: always;
	}
	
	/* Make GenerateBlocks Pro columns scrollable items - full width */
	.mobile-slider > *,
	.mobile-slider .gb-grid-column,
	.mobile-slider .gb-block-layout-column,
	.mobile-slider [class*="gb-grid-column"],
	.mobile-slider [class*="gb-block-layout-column"] {
		flex: 0 0 100% !important;
		max-width: 100% !important;
		scroll-snap-align: center;
		margin-right: 0;
		scroll-snap-stop: always;
	}

	.hide-mobile{
		display: none !important;
	}
	
	/* Hide scrollbar but keep functionality */
	.mobile-slider::-webkit-scrollbar {
		display: none;
	}
	
	.mobile-slider {
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	
	/* Ensure last item has proper spacing */
	.mobile-slider > *:last-child,
	.mobile-slider .wp-block-column:last-child {
		margin-right: 0;
		padding-right: 5%;
	}
	
	/* Position parent container relative for absolute arrows */
	.mobile-slider,
	.mobile-slider.wp-block-columns,
	.wp-block-columns.mobile-slider {
		position: relative;
	}
	
	/* Arrow navigation buttons - half circle design */
	.mobile-slider-arrow {
		position: absolute;
		top: 60%;
		transform: translateY(-50%);
		width: 50px;
		height: 100px;
		background-color: #d4e4be;
		color: #8b6f47;
		border: none;
		cursor: pointer;
		z-index: 100;
		display: flex !important;
		align-items: center;
		justify-content: center;
		transition: all 0.3s ease;
		opacity: 0.9;
		box-shadow: 0 2px 5px rgba(0,0,0,0.2);
		pointer-events: auto;
		padding: 0;
		margin: 0;
		font-size: 48px;
		font-weight: 300;
		line-height: 1;
		font-family: Arial, sans-serif;
	}
	
	/* Left arrow - half circle on left side */
	.mobile-slider-arrow-left {
		left: 0;
		border-radius: 0 50px 50px 0;
		padding-left: 5px;
	}
	
	/* Right arrow - half circle on right side */
	.mobile-slider-arrow-right {
		right: 0;
		border-radius: 50px 0 0 50px;
		padding-right: 5px;
	}
	
	.mobile-slider-arrow:hover {
		opacity: 1;
		background-color: #c4d4ae;
	}
	
	.mobile-slider-arrow:active {
		opacity: 0.8;
	}
	
	/* Hide arrows on very small screens if needed */
	@media (max-width: 480px) {
		.mobile-slider-arrow {
			width: 40px;
			height: 80px;
			font-size: 28px;
		}
		
		.mobile-slider-arrow-left {
			left: 0;
		}
		
		.mobile-slider-arrow-right {
			right: 0;
		}
	}
}


/* ==========================================================================
   SBI INSTAGRAM FEED ARROWS - Match Mobile Slider Style
   ========================================================================== */

/* Style SBI Instagram feed arrows to match mobile slider arrows */
.sbi-owl-prev,
.sbi-owl-next {
	position: absolute !important;
	top: -190px !important;
	transform: translateY(-50%) !important;
	width: 50px !important;
	height: 100px !important;
	background-color: #d4e4be !important;
	color: #8b6f47 !important;
	border: none !important;
	cursor: pointer !important;
	z-index: 100 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: all 0.3s ease !important;
	opacity: 0.9 !important;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
	pointer-events: auto !important;
	padding: 0 !important;
	margin: 0 !important;
	font-size: 48px !important;
	font-weight: 300 !important;
	line-height: 1 !important;
	font-family: Arial, sans-serif !important;
}

/* Left arrow - half circle on left side, positioned outside section */
.sbi-owl-prev {
	left: 0px !important;
	border-radius: 0 50px 50px 0 !important;
	padding-left: 5px !important;
}

/* Right arrow - half circle on right side, positioned outside section */
.sbi-owl-next {
	right: 0px !important;
	border-radius: 50px 0 0 50px !important;
	padding-right: 5px !important;
}

.sbi-owl-prev:hover,
.sbi-owl-next:hover {
	opacity: 1 !important;
	background-color: #c4d4ae !important;
}

.sbi-owl-prev:active,
.sbi-owl-next:active {
	opacity: 0.8 !important;
}

.gap-40{
	gap:4em !important;
}

/* ==========================================================================
   SBI INSTAGRAM FEED ARROWS - Match Mobile Slider Style
   ========================================================================== */

/* Style SBI Instagram feed arrows to match mobile slider arrows */
.sbi-owl-prev,
.sbi-owl-next {
	position: absolute !important;
	top: -190px !important;
	transform: translateY(-50%) !important;
	width: 50px !important;
	height: 100px !important;
	background-color: #d4e4be !important;
	color: #8b6f47 !important;
	border: none !important;
	cursor: pointer !important;
	z-index: 100 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: all 0.3s ease !important;
	opacity: 0.9 !important;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
	pointer-events: auto !important;
	padding: 0 !important;
	margin: 0 !important;
	font-size: 48px !important;
	font-weight: 300 !important;
	line-height: 1 !important;
	font-family: Arial, sans-serif !important;
}

/* Left arrow - half circle on left side, positioned outside section */
.sbi-owl-prev {
	left: 0px !important;
	border-radius: 0 50px 50px 0 !important;
	padding-left: 5px !important;
}

/* Right arrow - half circle on right side, positioned outside section */
.sbi-owl-next {
	right: 0px !important;
	border-radius: 50px 0 0 50px !important;
	padding-right: 5px !important;
}

.sbi-owl-prev:hover,
.sbi-owl-next:hover {
	opacity: 1 !important;
	background-color: #c4d4ae !important;
}

.sbi-owl-prev:active,
.sbi-owl-next:active {
	opacity: 0.8 !important;
}

/* Hide SVG icons in SBI arrows */
.sbi-owl-prev svg,
.sbi-owl-next svg {
	display: none !important;
}

/* Add arrow characters using ::before (match mobile slider) */
.sbi-owl-prev::before {
	content: '❮' !important;
	display: block !important;
	font-family: Arial, sans-serif;
	font-size: 29px;
}

.sbi-owl-next::before {
	content: '❯' !important;
	display: block !important;
	font-family: Arial, sans-serif;
	font-size: 29px;
}

/* Ensure containers allow arrows outside */
#sbi_images,
.sbi_carousel,
.sbi-owl-nav {
	position: relative !important;
	overflow: visible !important;
}

/* Update container overflow for SBI arrows */
#sbi_images,
.sbi_carousel {
	overflow: visible !important;
}

.sbi-owl-nav {
	overflow: visible !important;
}

/* Keep arrows inside the section on all screen sizes (negative offsets caused horizontal scroll) */
@media (max-width: 1200px) {
	.sbi-owl-prev {
		left: 0 !important;
	}
	
	.sbi-owl-next {
		right: 0 !important;
	}
}

/* On mobile, position arrows inside like mobile slider */
@media (max-width: 768px) {
	.sbi-owl-prev {
		left: 0 !important;
		width: 40px !important;
		height: 80px !important;
		font-size: 40px !important;
	}

	.sbi-owl-prev::before {
		font-size: 28px !important;
	}
	
	.sbi-owl-next {
		right: 0 !important;
		width: 40px !important;
		height: 80px !important;
		font-size: 40px !important;
	}

	.sbi-owl-next::before {
		font-size: 28px !important;
	}
}

/* Product Ingredients: label not bold, narrow left column (115px), left-aligned, no border */
/* Product attributes / shop_attributes table: bottom margin */
.woocommerce table.shop_attributes {
	margin-bottom: 16px;
}

/* Product variations: label column same width as Ingredients (115px), no top margin */
.woocommerce div.product form.cart .variations {
	margin-top: 0;
}
.woocommerce div.product form.cart .variations th {
	width: 115px !important;
	min-width: 115px !important;
	max-width: 115px !important;
}

.product-ingredients .product-ingredients-label,
.product-ingredients th.woocommerce-product-attributes-item__label {
	font-weight: 400 !important;
	text-align: left;
	vertical-align: top;
	width: 115px !important;
	min-width: 115px !important;
	max-width: 115px !important;
}
.product-ingredients,
.product-ingredients th,
.product-ingredients td,
.product-ingredients .product-ingredients-content,
.product-ingredients td.woocommerce-product-attributes-item__value {
	border: none !important;
	box-shadow: none !important;
}
.product-ingredients .product-ingredients-content,
.product-ingredients td.woocommerce-product-attributes-item__value {
	font-style: normal !important;
}
