/*
Theme Name: My E-Shop Theme
Theme URI: http://yourwebsite.com
Author: Your Name
Author URI: http://yourwebsite.com
Description: A custom e-commerce theme for WordPress.
Version: 1.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-eshop
*/

/* Define the primary color */
:root {
/*     --primary-color:   #000080;  /* Blue */ */
/*     --secondary-color: #c0c0c0;  /* Grey */ */
	--primary-color:  #862a31;
	--secondary-color: #a5854a;
}


body{
    margin: 0px;
    padding: 0px;
}

a{
    text-decoration: none !important;
}

header{
    padding-top: 20px;
    /*padding-bottom: 10px;*/
}
.menu_icons{
    text-align: right;    
}

.logo{
   
}

#main_menu{
    width: 100%;
    text-align: center;
}

#main_menu ul{
    margin: 0px;
    padding: 0px;
        padding-top: 4px;
}

#main_menu ul li{
    display: inline-block;
        padding: 0px 15px 0px 15px;
}

/* slider */

#homepage-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    /*max-width: 1200px;*/
    margin: 0 auto;
}

.slider-item {
    display: none; /* Hide all slides initially */
}

.slider-item:first-child {
    display: block; /* Show the first slide */
}

@media only screen and (max-width: 600px) {
	.slider-item{
		background-position: 80% !important;
		height: 190px !important;
	}
}

.breadcrumb{
    background-color: var(--primary-color);
        margin-top: 10px;
    padding: 60px 10px 60px 0px;
}




/*.footer-widgets {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
  
/*    background-color: #333;*/
/*    color: white;*/
/*    width: 100%;*/
/*}*/

/*.footer-widget {*/
/*    flex: 1;*/
/*    padding: 10px;*/
/*}*/

.widget-title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}





/* Flex/ Grid Container for Widgets */
.footer-widget-container {
    display: grid;
    gap: 20px;
}

/* 1 Widget - Full Width */
.footer-widget-container.columns-1 {
    grid-template-columns: 1fr; /* Single column */
}

/* 2 Widgets - 50% Each */
.footer-widget-container.columns-2 {
    grid-template-columns: 1fr 1fr; /* Two equal columns */
}

/* 3 Widgets - 33% Each */
.footer-widget-container.columns-3 {
    grid-template-columns: 1fr 1fr 1fr; /* Three equal columns */
}

/* 4 Widgets - 25% Each */
.footer-widget-container.columns-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr; /* Four equal columns */
}

/* You can customize the column layout further based on your design */



/*.footer-widget {*/
    /* display: inline-flex; */
/*    width: 25%;*/
/*    display: inline-block;*/
/*    vertical-align: top;*/
/*}*/

footer{
    background-color: #333;
    color: #fefefe;
    padding: 2rem 0;
}


.powered_by{
    text-align: right;
    color: #fff;
    width: 100%;
}

.powered_by a{
font-weight:bold;
color: #fff !important;
}


.copyright{
    text-align: left;
    color: #fff;
    width: 100%;
}



.home-middle-section {
    margin: 0 auto;
    max-width: 800px; /* Adjust width as needed */
    padding: 20px;
    text-align: center;
}

.home-middle-section .widget {
    margin-bottom: 20px;
}

.home-middle-section .widget-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.woocommerce-product-list-home{
    width: 100%;
}

/* .product-item{
    display: inline-block;
    width: 24.6%;
    margin: 0.2%;
    border: solid 1px #f4f4f4;
    text-align: center;   
    padding: 10px;
} */
.product-item {
    display: inline-block;
    width: 48%; /* Default mobile view: 2 items per row (col-6 equivalent) */
    margin: 1%; /* Adjusted margin to account for 2 items per row */
    border: solid 1px #f4f4f4;
    text-align: center;   
    padding: 10px;
    box-sizing: border-box;
}

.product-item img {
    width: 100%; /* Makes image responsive to container */
    height: 200px; /* Fixed height */
    object-fit: cover; /* Ensures image covers area without distortion */
    display: block; /* Removes extra space below image */
    margin: 0 auto; /* Centers image */
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .product-item {
        width: 48%; /* Maintain 2 items per row */
        margin: 1%;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .product-item {
        width: 31.33%; /* 3 items per row */
        margin: 1%;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .product-item {
        width: 23.5%; /* 4 items per row with some margin */
        margin: 0.75%;
    }
}

.bg-banner {
    /* background-size: cover; */
    /* background-position: right; */
    /* background-repeat: no-repeat; */
    /* max-height: 400px; */
    /* padding: 40px 0; */
    /*background-attachment: fixed;*/
    position: relative;
    height: 400px;
    color: #f7f7f7;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    z-index: 1;
}

.bg-banner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.section{
    padding-top: 20px;
    padding-bottom: 20px;
}

.item_cart_details{
    margin-top: 10px;
    background-color: #f4f4f4;
    padding-top: 15px;
    padding-bottom: 15px;
}

/*.item_cart_details .add_to_cart_button{*/
    /*border: solid 1px #9d9d9d;*/
/*    border-radius: 5px;*/
/*    padding: 5px;*/
/*    color: var(--primary-color);*/
/*}*/

.item_cart_details .add_to_cart_button {
  display: inline-block;
  color: #fefefe;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: var(--primary-color);
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 5px;
  transition: all 0.15s ease-in-out;
  margin: 5px 0 0 0;
}

.item_cart_details .add_to_cart_button:hover {
  color: #fefefe;
  background-color: var(--secondary-color);
}

.item_cart_details_price{
    color: #000;
    font-size: 12px;
    margin-bottom: 5px;
}

.menu_icons i{
    margin-left: 10px;
    color: #000;
}

.item_cart_details_title{
    color: #000;
    font-weight: bold;
}

#site a, a:visited{
   /* color: #000 !important; */
}

.woocommerce ul.products li.product{
     border: solid 1px #f4f4f4;
    text-align: center;   
    padding: 10px;
}

.woocommerce ul.products li.product a img{
    
        height: 200px;
    object-fit: contain;
    
}

.form-row{
    display: block;
}

.footer-list{
    list-style: "> ";
    margin: 0;
    padding: 0 15px;
}

.footer-list li a,
.footer-list li a:hover{
    color: #fefefe;
    text-decoration: none;
}

.newsBtn {
  display: inline-block;
  color: #89282d;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #fefefe;
  border: 1px solid #89282d;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 5px;
  transition: all 0.15s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: inherit;
}

.newsBtn:hover {
  color: #fefefe;
  background-color: #89282d;
}

.custom-logo{
	max-width: 100px !important;
    height: auto;
}

#main_menu ul, .menu_icons{
	    padding-top: 26px;
    font-size: 18px;
}


.breadcrumb{
	background-color: #d6d6d6 !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.menu a, .menu a:visited {
    color: #89282d !important;
}

.item_cart_details .add_to_cart_button{
	background-color: #89282d !important;
}

footer {
	background-color: #89282d !important;
}

element.style {
}
*, ::after, ::before {
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: border-box;
}
user agent stylesheet
li {
    display: list-item;
    text-align: -webkit-match-parent;
}
.footer-list {
	list-style: disc !important;
}
.footer_image_logo{
	width: 150px !important; 
}
.contact_details a{
	color: #fff !important;
}