/* ****** */
/* images */
/* ****** */
.img-bg{
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-size: cover; /* auto|length|cover|contain|initial|inherit|100% 100%|200px 200px; */	/**** if made "!important" it will break the zoom effect below */
}
.img-bg{
	min-height: 20px; /* just to be safe */
}
/* ****** */
/* [end]images */
/* ****** */

/* ********************* */
/* CSS bg zoom in effect */
/* ********************* */
/* this version zooms in and zooms out infinitely */
.bg-zoom-in {
    animation: bg-zoom-in 30s ease-in-out infinite;
}
@keyframes bg-zoom-in {
    0% {
        background-size: 100%;
    }
    50% {
        background-size: 120%; /* zoom in */
    }
    100% {
        background-size: 100%; /* zoom back out */
    }
}
/* Mobile version */
@media screen and (max-width: 920px) {
    @keyframes bg-zoom-in {
        0% {
            background-size: auto 100%;
        }
        50% {
            background-size: auto 120%;
        }
        100% {
            background-size: auto 100%;
        }
    }
}

/* this version stops at the end of the first zoom in */
.bg-zoom-in-2{ 
    animation-duration: 30s;
    animation-name: bg-zoom-in-2;
	animation-fill-mode: forwards; /* stops at the end and does not come back to original */
}

@keyframes bg-zoom-in-2{
    from {
    	background-size: 100%;
    }    
    to {
    	background-size: 120%;
    }
}
@media screen and (max-width: 920px){ /* for small resolutions */
@keyframes bg-zoom-in-2{
    from {
    	background-size: auto 100%;
    }    
    to {
    	background-size: auto 120%;
    }
}
}
/* ********************* */
/* [end]CSS bg zoom in effect */
/* ********************* */

/* ********************** */
/* CSS img zoom in effect */
/* ********************** */
.zoom-it{
	background-size: 100%;
	/* Required for the zoom-back effect */
	transition: background-size 0.5s ease; 
}
.zoom-it:hover{
  /* Increase percentage to zoom in */
  background-size: 130%; 
}
/* ********************** */
/* [end]CSS img zoom in effect */
/* ********************** */

/* ********************* */
/* CSS Text Blink Effect: Just add class "blink-it" */
/* ********************* */
.blink-it {
    animation: blink-it 1s infinite;
}
@keyframes blink-it {
    from { opacity: 1.0; }
    50% { opacity: 0.5; }
    to { opacity: 1.0; }
}
/* ********************* */
/* [END] CSS Text Blink Effect */
/* ********************* */

/* ********************* */
/* CSS Button Shake Effect: Just add class "shake-it" */
/* ********************* */
.shake-it:hover, .shake-it-1:hover {
	/* Start the shake animation and make the animation last for 0.5 seconds */
	animation: shake 0.5s;
	/* When the animation is finished, start again */
	animation-iteration-count: infinite;
}
@keyframes shake {
	0% { transform: translate(1px, 1px) rotate(0deg); }
	10% { transform: translate(-1px, -2px) rotate(-1deg); }
	20% { transform: translate(-3px, 0px) rotate(1deg); }
	30% { transform: translate(3px, 2px) rotate(0deg); }
	40% { transform: translate(1px, -1px) rotate(1deg); }
	50% { transform: translate(-1px, 2px) rotate(-1deg); }
	60% { transform: translate(-3px, 1px) rotate(0deg); }
	70% { transform: translate(3px, 1px) rotate(-1deg); }
	80% { transform: translate(-1px, -1px) rotate(1deg); }
	90% { transform: translate(1px, 2px) rotate(0deg); }
	100% { transform: translate(1px, -2px) rotate(-1deg); }
}
/* ********************* */
/* [END] CSS Button Shake Effect */
/* ********************* */

/* ********************* */
/* CSS Button Shake Effect v2: Just add class "shake-it-2" */
/* ********************* */
.shake-it-2:hover {
	animation: shake-it-2 0.82s cubic-bezier(.36,.07,.19,.97) both;
	transform: translate3d(0, 0, 0);
	perspective: 1000px;
}
@keyframes shake-it-2 {
	10%, 90% { transform: translate3d(-1px, 0, 0); }
	20%, 80% { transform: translate3d(2px, 0, 0); }
	30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
	40%, 60% { transform: translate3d(4px, 0, 0); }
}
/* ********************* */
/* [END] CSS Button Shake Effect v2 */
/* ********************* */

/* ********************* */
/* CSS Button Shake Effect v3: Just add class "shake-it-3" */
/* ********************* */
.shake-it-3:hover {
	animation: shake-it-3 0.4s infinite;
}

@keyframes shake-it-3 {
	0% { transform: translateX(0px) rotate(0deg); }
	20% { transform: translateX(-4px) rotate(-4deg); }
	40% { transform: translateX(-2px) rotate(-2deg); }
	60% { transform: translateX(4px) rotate(4deg); }
	80% { transform: translateX(2px) rotate(2deg); }
	100% { transform: translateX(0px) rotate(0deg); }
}
/* ********************* */
/* [END] CSS Button Shake Effect v3 */
/* ********************* */











/* *********** */
/* sticky menu */
/* *********** */
.sticky-menu{
	position: sticky;
	top: 0;
	z-index: 1000; /* Keeps it above other content */
}
/* *********** */
/* [end]sticky menu */
/* *********** */






/* *********************************** */
/* triangle border in beetwen sections */
/* *********************************** */
.tringle-border{
	position: relative; /* Required for absolute positioning of the triangle */
}
.tringle-border::after{
	content: "";
	position: absolute;
	top: 100%;       /* Positions it just below the div */
	left: 50%;      /* Moves it to the horizontal center */
	margin-left: -60px; /* Offset by half the triangle's width to perfectly center */
	
	/* The Triangle Shape */
	width: 0;
	height: 0;
	border-left: 60px solid transparent;
	border-right: 60px solid transparent;
	border-top: 20px solid #fbfbfb; /* Match the container's background color */
}
.tringle-border.white::after{
	border-top-color: red;
	border-top-color: #ffffff; /***** tiangle color! *****/
}
.tringle-border.gray::after{
	border-top-color: black;
	border-top-color: #fbfbfb; /***** tiangle color! *****/
}
/* *********************************** */
/* [end]triangle border in beetwen sections */
/* *********************************** */






/* ************ */
/* circle icons */
/* ************ */
.circle-icon{
    text-align: center;
    vertical-align: middle;
    border-radius: 50%;
	
	color: #ffffff;
    background: #000000;
	
    width: 45px;
    height: 36px;
	padding-top: 9px;
	font-size: 28px
}
/* ************ */
/* [end]circle icons */
/* ************ */






/* ******* */
/* buttons */
/* ******* */
.button{
	/*width: fit-content !important;*/
	padding: 12px 24px !important;
	display: inline-block;
	
	text-transform: uppercase;
	/*border: 1px solid #bfbfbf;*/
	color: #ffffff !important;
}
.button,
.button.small{	 
	font-size: 16px;
}
.button.medium{
	font-size: 24px;
}
.button.large{
	font-size: 36px;
}
/* ******* */
/* [end]buttons */
/* ******* */






/* ********************** */
/* footer contact section */
/* ********************** */
.contact-footer-bit{
  display: flex;
  gap: 3px;
}

.contact-footer-bit div:first-child {
  width: 20px;
  flex-shrink: 0; /* Prevents the 20px box from squishing */
}

.contact-footer-bit div:last-child {
  flex: 1; /* Takes up all remaining space */
}
/* ********************** */
/* [end]footer contact section */
/* ********************** */












/* ******************** */
/* horizontal separator */
/* ******************** */
hr{
	border: none; /* Removes the default 3D browser shading */
	height: 2px;
	background-color: #333;
	width: 50px;
	margin-left: 0; 
}
hr.center{
	margin-left: auto
}
/* ******************** */
/* [end]horizontal separator */
/* ******************** */




























/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* layout below: positions, widths, heights, floats 
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */









.square{ /* used mostly for images */
	aspect-ratio: 1/1;
}














.top-bar > div > div{
	flex-grow: 1 !important;
	flex-shrink: 1 !important;
	flex-basis: 0 !important;	
}
@media screen and (max-width: 920px){
.top-bar > .block-wrap {
	display: block !important
}
}






















.header > .block-wrap{
	flex: 1;
	display: flex;	
	align-items: center; /* Vertically centers the content */
}
.header-logo{
	flex-basis: 40%;
}
.header-side{
	flex-basis: 60%;
}
@media screen and (max-width: 920px){
.header > .block-wrap{
	display: block !important
}
.contact-widget.address{
	display: none !important
}
}
.header-side .header-side-wrap{
	display: flex;
	/* Optional: adds some spacing around the items */
	gap: 10px; 
	align-items: center; /* Vertically centers the content */
}
.header-side .contact-widget{
	flex: 1;
	display: flex;	
	align-items: center; /* Vertically centers the content */
}
.header-side .contact-widget .hw-data{
	flex-grow: 1;
	overflow: hidden;
}
@media screen and (max-width: 920px){
.header-side .contact-widget{
	display: flex;
	justify-content: center; /* horizontal */
	align-items: center;     /* vertical */
}
.header-side .hw-data{
	flex-grow: 0 !important
}
}







#header .block-wrap .header-logo{
	flex-basis: 40% !important; /* deduct the padding on the sides */
}
#header .block-wrap .header-side{
	flex-basis: 60% !important; /* deduct the padding on the sides */
}










#menu-main .block-wrap{
	flex-wrap: wrap;
	align-items: center; /* Vertically centers all child items */
}
#menu-main .block-wrap > div{
	flex-grow: 1 !important;
	flex-shrink: 1 !important;
	flex-basis: 0 !important;	
	
	box-sizing: border-box;
}

@media screen and (max-width: 920px){
#menu-main .block-wrap > div{
	flex-basis: 25% !important;
}
}
.menu-main .block-wrap > div{
	/*flex-basis: 100% !important;*/ /* deduct the padding on the sides */
}










#menu-main .menu-item a,
#menu-footer .menu-item a{
	display: inline-block;
}
#menu-main .menu-item a{
	width: 100%;
}











.section > .block-wrap {
	overflow: hidden;
	flex-wrap: wrap;
}
div:not(#content) > .block-wrap{
	display: flex;
	justify-content: center;
}
.block-wrap{
	width: 1200px; /* if chanhing this value, change also the width css query that adds left and right paddings on mobile */
	max-width: 100%;
	margin: auto;
	box-sizing: border-box
}

























/*.section.hero > div,*/
.img-bg:has(.hero-title){
	display: flex;
	justify-content: center; /* Centers horizontally along the main axis */
	align-items: center;     /* Centers vertically along the cross axis */
	flex-direction: column;  /* Stacks children vertically */
}

.img-bg:has(.image-caption){
	position: relative;
}
.image-caption{
	position: absolute;    /* Removes from normal flow */
	bottom: 50px;             /* Pins to the bottom edge */
	left: 0;               /* Optional: stretches or aligns left */
}










body .hero > .img-bg{
	height: 340px; /* about less than 340 makes it look back in mobile , TODO */
}
body.index .hero > .img-bg{
	height: 560px;
}
.section .side > .img-bg{
	height: 460px;
}










/* content section mobile display layout */
/* reverse divs in mobile */
#content .section .block-wrap:has( > .side ){
	gap: 20px
}
#content .section .block-wrap > .side{
	flex-grow: 0 !important;
	flex-shrink: 0 !important;
	flex-basis: calc(50% - 10px) !important; /* deduct the padding on the sides */
}
@media screen and (max-width: 920px){
#content .block-wrap{
	flex-direction: column !important
}
#content > :nth-child(2n + 1) .block-wrap > div.side:nth-child(1){
	order: 2 
}
#content > :nth-child(2n + 1) .block-wrap > div.side:nth-child(2){
	order: 1 
}
}

















.section .title,
.section .entries{
	width: 100%
}







.contact-widgets,
.contact-widgets > div{
	display: flex;
	flex-wrap: wrap
}
.contact-widgets > div{
	flex-grow: 0 !important;
	flex-shrink: 0 !important;
	flex-basis: 100%; /* deduct the padding on the sides */
}










.entries{
	display: flex;
	flex-wrap: wrap;
	gap: 10px; 
}
.entries > div{
	width: calc((100% - 30px) / 4); 
	box-sizing: border-box; 
}

@media screen and (max-width: 920px){
.entries > div{
	flex: 0 0 calc(50% - 5px); 
}
}





.full-width{
	width: 100%
}








#footer .block-wrap{
	display: flex;
	flex-wrap: wrap; /* Allows items to break to a new line */
	gap: 30px;
}
#footer .block-wrap > div{
	flex-grow: 0 !important;
	flex-shrink: 0 !important;
}
#footer .block-wrap > div:nth-child(1){
	flex-basis: calc(50% - 15px); /* deduct the padding on the sides */
}
#footer .block-wrap > div:nth-child(2),
#footer .block-wrap > div:nth-child(3){
	flex-basis: calc(25% - 22.5px); /* deduct the padding on the sides */
}
@media screen and (max-width: 920px){
#footer .block-wrap > div{
	flex-basis: 100% !important; /* deduct the padding on the sides */
}
}





/* images */
.footer-contact{
	width: 75px;
}








.section.contact .contact-widgets .circle-icon{
    width: 45px;
    height: 36px;
}








.section.gallery-photos .img-bg,
.section.gallery-videos .img-bg,
.entries-grid .img-bg{ 
	aspect-ratio: 1 / 1;
}












t{
	width: fit-content;
}












.lil-cart-wrapper > div{
	display: flex;
	flex-wrap: wrap;
}
.lil-cart-wrapper > div > div{
	flex: 0 0 50%; /* flex-grow: 0, flex-shrink: 0, flex-basis: 50% */
	box-sizing: border-box; /* Ensures padding/borders don't break 50% */
}
@media screen and (max-width: 920px){

}





.section.cart .full-width{
	display: flex;
	flex-wrap: wrap;
}
.section.cart .full-width > div{
	flex: 0 0 50%; /* flex-grow: 0, flex-shrink: 0, flex-basis: 50% */
	box-sizing: border-box; /* Ensures padding/borders don't break 50% */
}
@media screen and (max-width: 920px){

}
.section.cart .cart-products{
	display: flex;
	flex-wrap: wrap;
}
.section.cart .cart-products > div{
	flex: 0 0 100%; /* flex-grow: 0, flex-shrink: 0, flex-basis: 50% */
	box-sizing: border-box; /* Ensures padding/borders don't break 50% */
	
	
	display: flex;
	flex-wrap: wrap;
}
.section.cart .cart-products > div > div{
	flex: 0 0 33%; /* flex-grow: 0, flex-shrink: 0, flex-basis: 50% */
	box-sizing: border-box; /* Ensures padding/borders don't break 50% */
}













































/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* distances below: paddings and margins
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */






body{
	margin: 0px
}



#content{
	padding: 0px
}


.hw-icon{
	margin-right: 10px !important
}










@media screen and (max-width: 920px){
.header-logo{
	margin-bottom: 10px
}
}









#menu-main .menu-item a,
#menu-footer .menu-item a{
	padding: 12px 0px 12px 0px
}
#menu-footer .menu-item a{
	padding: 12px 0px 12px 0px
}
#content .hero-title,
#content .hero-subtitle{
	padding: 0px 25px
}
.image-caption{
	padding: 6px 20px
}









/* padings, important for mobile display */
#top-bar .block-wrap{
	padding-top: 8px;
	padding-bottom: 8px;
}
#header .block-wrap,
#footer .block-wrap{
	padding-top: 30px;
	padding-bottom: 30px;
}
#content .section .block-wrap{
	padding-top: 60px;
	padding-bottom: 60px;
}
#content .section.hero-cta .block-wrap{
	padding-top: 5px;
	padding-bottom: 5px;
}
#footer-bottom .block-wrap{
	padding-top: 16px;
	padding-bottom: 16px;
}
@media screen and (max-width: 1240px){ /* if chanhing this value, change also the wrapper width which handles the general document width */
#top-bar .block-wrap,
#header .block-wrap,
#content .block-wrap,
#footer .block-wrap,
#footer-bottom .block-wrap,
.section.hero .img-bg{
	padding-left: 20px;
	padding-right: 20px;
}
}










#menu-main{
	margin-bottom: -28px
}





.section .hero-title{
	margin-bottom: 5px
}





.section.hero-cta{
	margin-top: -26px;
}






.section.contact .form-fields{
	margin-top: 20px;
}
.section.contact .form-fields > div:nth-child(even):not(:last-child){
	margin-bottom: 20px;
}
.section.contact .form-fields > div:nth-child(odd):not(:last-child){
	margin-bottom: 5px;
}
.section.contact .contact-widgets{
	margin-top: 30px;
}
.section.contact .contact-widgets > div:not(:last-child){
	margin-bottom: 30px;
}
.section.contact .contact-widgets .circle-icon{
	padding-top: 9px;
}








.section .side .button-wrapper{
	margin-top: 20px
}








#footer .footer-col .title{
	margin-bottom: 10px
}





.section .title,
.section hr,
#footer .footer-col .footer-logo{
	margin-bottom: 20px
}



#footer .contact-footer > div:not(:last-child){
	margin-bottom: 15px;
	border: 0px solid red
}
#footer .contact-footer > div:first-child{
	margin-top: 25px;
}


















































/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */
/* style below: colors, fonts, backgrounds, ...
/* *********************************************************************** */
/* *********************************************************************** */
/* *********************************************************************** */







{
	font-family: "Lato", Helvetica, Arial, sans-serif !important;
	font-family: "Bebas", Helvetica, Arial, sans-serif !important;
	font-family: "Poppins", Helvetica, Arial, sans-serif !important;
	font-family: "Montserrat", Helvetica, Arial, sans-serif !important;
}

.header-logo,
.footer-logo{
	font-family: "Bebas", Helvetica, Arial, sans-serif !important;	
	word-spacing: 8px; /* Can use px, em, rem, or normal */
	font-weight: normal; 
	font-style: normal;
}
.section .hero-title,
.section .title,
.footer-col .title{
	font-family: "Comic Sans MS", Helvetica, Arial, sans-serif !important;
	font-family: "Lato", Helvetica, Arial, sans-serif !important;
}









#document{
	font-family: "Arial", "Helvetica", sans-serif;
}

#document a{
	text-decoration: none;
	color: inherit;
}











#document{
	font-size: 16px;
}
#top-bar,
#footer{
	font-size: 14px;
}
#footer-bottom{
	font-size: 12px;
}
#menu-main .menu-item a{
	font-size: 16px;
}
body:not(.index) .section .hero-subtitle,
.entries-grid .entry-title,
.section.contact .hw-value,
.footer-col .title{
	font-size: 24px;
}
.section.hero-cta,
.section .title{
	font-size: 32px !important
}
.header-logo,
.footer-logo,
body:not(.index) .section .hero-title{
	font-size: 36px;
}

body.index .section .hero-title{
	font-size: 48px;
}
body.index .section .hero-subtitle{
	font-size: 28px;
}

@media screen and (max-width: 920px){
	.section.hero-cta{
		font-size: 28px !important;
	}
	.section .hero-title{
		font-size: 36px !important;
	}
	.section .hero-subtitle{
		font-size: 24px !important;
	}
}






#document{
	line-height: 1.6
}







#menu-main .menu-item a{
	text-transform: uppercase
}







.section .hero-title,
.section .hero-subtitle,
.image-caption{
	color: #ffffff;
}
.section.hero > div > div,
.image-caption{
	background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5));
}










#content .section:nth-child(2n):not(.hero-cta){
	background-color: #fbfbfb 
}
#menu-main .menu-item:not(:last-child){
	border-right: 1px solid white
}






body:not(.index) .hero > .img-bg{
	text-transform: capitalize
}









#top-bar .block-wrap > div,
.section.hero-cta,
.section.hero > div > div,
.entries-grid .entry-title,
#footer-bottom,
#menu-main .menu-item,
.section.checkout .title{
	text-align: center
}
@media screen and (max-width: 920px){
.header-logo{
	text-align: center !important;
}
}










.hw-label,
.entries-grid .entry-title,
.cart-products > :first-child,
.lil-cart-wrapper > div > :first-child{
	font-weight: bold;
}
.header-logo,
#footer .footer-col .footer-logo,
.section .hero-title,
.section .title{
	font-weight:900
}










.section.reviews .entries .entry > :nth-child(2){
	text-align: right
}

.section.reviews .entries .entry > :nth-child(1){
	background-color: #fbfbfb;
	border: 1px solid #efefef;
	border-radius: 5px;
	padding: 10px !important;
	
	position: relative; /* Required for absolute positioning of the triangle */	
	
	margin-bottom: 10px
}
.section.reviews .entries .entry > :nth-child(1)::after{
	content: "";
	position: absolute;
	top: 100%;       /* Positions it just below the div */
	left: 50%;      /* Moves it to the horizontal center */
	margin-left: 100px; /* Offset by half the triangle's width to perfectly center */
	
	/* The Triangle Shape */
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 10px solid #121212; /* Match the container's background color */
}
@media screen and (max-width: 920px){
.section.reviews .entries .entry > :nth-child(1)::after{
	margin-left: 60px; /* Offset by half the triangle's width to perfectly center */
}
}









.section.contact .contact-widgets .circle-icon{
	color: #ffffff;
    background: #000000;
	font-size: 28px
}










#menu-footer .menu-item{
	border-bottom: 1px dotted white;
}


















.section.checkout .full-width{
	max-width: 100%;
	width: 500px;
}








.form-fields input,
.form-fields textarea{
	width: 100%;
}
.form-fields input:not([type=submit]),
.form-fields textarea,
.form-fields select{
	max-width: 100%;
	font-size: 18px;
	padding: 5px 10px;
	box-sizing: border-box
}
.form-fields textarea{
	height: 60px
}
.form-fields input[type=submit]{
	border: none;
}

























.lil-cart-wrapper{
	border: 1px solid #bfbfbf;
	margin-bottom: 10px
}






.add-2-cart,
.add-2-cart select,
.add-2-cart button{
	font-size: 20px;
	margin-top: 10px
}
.add-2-cart select{
	margin-right: 5px
}
























