.product-cover {
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.product-cover img {
    width: 100%;
    display: block;
    margin-left: auto;
	position: static;
	margin-top:70px;
    margin-right: auto;
    background-color: #ffffff;
}

.ribbon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #808080;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 18px;
    z-index: 10;
    width: 100%; /* Make ribbon width 100% */
    max-width: 100vw; /* Limit ribbon width to viewport width */
}

.ribbon-text {
    margin: 0;
    text-align: center;
}

.tab-header {
    display: flex;
    justify-content:Center;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .tab-header {
        flex-direction: column;
        align-items: center;
    }

    .tab-button {
        width: 100%;
        margin-bottom: 10px; /* Add some spacing between the buttons */
    }
}

.tab-button {
    padding: 15px 33px;
    cursor: pointer;
    border: none;
	width:100%;
    background-color: #0f0e0e5e;
    transition: background-color 0.3s;
	border-style: ridge;
}

.tab-button:hover {
    background-color: #ddd;
}

.tab-button.active {
    background-color: #fd5703;
    color: white;
}

.tab-content {
     
    border-radius: 4px;
   /*  padding: 20px; */
    background-color: #fff;
    margin-top: 20px;
}

.feature-table td {
    padding: 10px;
    border: 1px solid #ddd;
}

.feature-table td:first-child {
    font-weight: bold;
    background-color: #f2f2f2;
}




 /* General Specifications Section Styling */
  .Specification1 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
  gap: 20px; /* Space between items */
  margin-top: 40px; /* Space above specifications */
}

/* Individual Specification Item Styling */
  .Specification1 li {
  background-color: #ffffff; /* Clean white background */
  padding: 25px;
  border: 2px solid #f0f0f0; /* Subtle border for separation */
  border-radius: 12px; /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
  transition: all 0.3s ease; /* Smooth transition on hover */
  text-align: center; /* Center content */
  font-family: 'Helvetica Neue', sans-serif; /* Modern, clean font */
}

/* Hover Effect */
  .Specification1 li:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15); /* Darker shadow on hover */
  transform: translateY(-4px); /* Lift effect */
}

/* Title Styling */
  .Specification1 li span {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333; /* Dark text for titles */
  margin-bottom: 15px; /* Space between title and description */
  letter-spacing: 0.5px; /* Slight spacing for elegance */
  text-transform: uppercase; /* Capitalize the titles for emphasis */
}

/* Description Styling */
  .Specification1 li p {
  font-size: 1rem;
  color: #555; /* Lighter color for descriptions */
  line-height: 1.6;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .Specification1 li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
    .Specification1 li {
    font-size: 0.95rem; /* Adjust font size for small devices */
  }
}






/* Update the styles for the specification section */
.Specification1 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; /* Center the items horizontally */ */
}




.specification-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

.specification-list li {
  background-color: #f8f9fa; /* Light gray background */
  padding: 15px;
  border: 1px solid #fd5703; /* Subtle border */
  border-radius: 8px; /* Rounded corners */
  font-size: 1rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.specification-list li span {
  font-weight: bold;
  color: #333; /* Darker font color for emphasis */
  margin-bottom: 5px;
}

.specification-list li:hover {
  background-color: #e9ecef; /* Slightly darker on hover */
  transform: translateY(-2px); /* Subtle lift effect */
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .specification-list {
    grid-template-columns: -1fr;  Single column on smaller screens */
  }

  .specification-list li {
    font-size: 0.95rem;
  }
}



.table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 1rem;
  text-align: left;
}

.table th, .table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
}

.table th {
  background-color: #f4f4f4;
  font-weight: bold;
}

.table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.table-bordered {
  border: 2px solid #ddd;
}

.table-striped tbody tr:nth-child(odd) {
  background-color: #f4f4f4;
}



 /* Slider Styles */
 
 
 
 .slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prev, .next, .dots {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    text-align: center;
}

.prev {
    left: 0;
    background-color: #ccc;
}

.next {
    right: 0;
    background-color: #ccc;
}

.dots {
    display: flex;
    justify-content: center;
}

.dot {
    background-color: #ccc;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin: 0 2px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}





/* Swiper Slider Styles */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
 
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #000;
  opacity: 0.2;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #000;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
}

/* Additional Styles */
.card-body {
  padding: 2rem;
}

.icon-link {
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.icon-link-hover:hover {
  color: #007bff;
}

.icon-link svg {
  margin-left: 0.5rem;
}

.tabs {
    justify-content: flex-start;
}

.tabs-title {
    margin-right: 0px;
}

.tabs-panel {
    /* Add styles as needed */
}

/* Display similar products in a row */
.tabs-panel#panel2 .row.medium-up-3 {
    flex-direction: row;
}

/* Ensure each column takes up equal space */
.tabs-panel#panel2 .column {
    flex: 0 0 calc(20% - 11px); /* Adjust the percentage to fit the number of products you want per row */
    margin: 0 10px 20px 0; /* Adjust margins as needed */
}

/* ... (previous styles remain unchanged) ... */

/* Responsive styles */
@media (max-width: 768px) {
    /* Adjust the direction of the row and margins for mobile view */
    .tabs-panel#panel2 .row.medium-up-3 {
        flex-direction: column;
    }

    /* Adjust each column to take up full width on mobile */
    .tabs-panel#panel2 .column {
        flex: 0 0 100%; /* Make each column take up the full width */
        margin: 0 0 20px 0; /* Adjust margins to provide spacing between the columns */
    }
}

/* ... (rest of your styles remain unchanged) ... */

.zoomable {
  transition: transform 0.3s; /* Add smooth transition effect */
}

/* Define the zoom effect on hover */
.zoomable:hover {
  transform: scale(2); /* Increase the scale on hover */
  cursor: pointer; /* Change cursor to indicate interactivity */
}

/* Define the style for the zoomed state */
.zoomable.zoomed {
  position: fixed;
  top: 70%;
  left: 70%;
  transform: translate(-50%, -50%) scale(2); /* Center the image and adjust the scale */
  z-index: 9999; /* Set a high z-index to ensure it appears on top of other content */
}

/* Custom CSS to change slider arrow color to black */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%); /* This will invert the color of the arrow */
}

/* If you want to change the background color of the arrows */
.carousel-control-prev,
.carousel-control-next {
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity or color as needed */
}

/* If you want to change the arrow size */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px; /* Adjust size as needed */
    height: 30px; /* Adjust size as needed */
}
.bg-body-tertiary-pumpaction {
    width: 100%;
	  height: 400px; /* Default height for larger screens */
    background-image: url(../images/product/pumpaction/stallion-pump-action-cover.jpg);
    background-size: cover;
    background-position: center; /* Centering the image */
    background-repeat: no-repeat;
    padding: 20px;
    color: white;
    --bs-bg-opacity: 1;
    background-color: #e1d5c4 !important;
}

.bg-body-tertiary-revolver {
    width: 100%;
	height: 400px; /* Default height for larger screens */
    background-image: url(../images/product/revolver/stallion-revolver-final-cover.jpg);
    background-size: cover;
    background-position: center; /* Centering the image */
    background-repeat: no-repeat;
    padding: 20px;
    color: white;
    --bs-bg-opacity: 1;
    background-color: #e1d5c4 !important;
}

.bg-body-tertiary-semi-automatic {
    width: 100%;
	  height: 400px; /* Default height for larger screens */
    background-image: url(../images/product/semiautomatic/Semi-automatic-cover.jpg);
    background-size: cover;
    background-position: center; /* Centering the image */
    background-repeat: no-repeat;
    padding: 20px;
    color: white;
    --bs-bg-opacity: 1;
    background-color: #e1d5c4 !important;
}
.bg-body-tertiary-sb
{
    width: 100%;
	  height: 400px; /* Default height for larger screens */
    background-image: url(../images/product/single-barrel/stallion-single-barrel.jpg);
    background-size: cover;
    background-position: center; /* Centering the image */
    background-repeat: no-repeat;
    padding: 20px;
    color: white;
    --bs-bg-opacity: 1;
    background-color: #e1d5c4 !important;
}
.bg-body-tertiary-semi-automatic {
    width: 100%;
	  height: 400px; /* Default height for larger screens */
    background-image: url(../images/product/semiautomatic/Semi-automatic-cover.jpg);
    background-size: cover;
    background-position: center; /* Centering the image */
    background-repeat: no-repeat;
    padding: 20px;
    color: white;
    --bs-bg-opacity: 1;
    background-color: #e1d5c4 !important;
}

/* Responsive adjustments for mobile devices */
@media (max-width: 768px) {
    .bg-body-tertiary-pumpaction,
    .bg-body-tertiary-revolver,
    .bg-body-tertiary-semi-automatic {
        height: 200px; /* Adjust height for mobile */
        background-position: center; /* Ensure the background is centered */
        background-size: cover; /* Ensure the background covers the container */
    }
}

.bg-body-tertiary-pistol {
    width: 100%;
    height: 400px; /* Default height for larger screens */
    background-image: url(../images/product/pistol/stallion-pistol-cover.jpg);
    background-size: cover;
    background-position: ; /* Center the background image */
    background-repeat: no-repeat;
    padding: 20px;
    color: white;
    --bs-bg-opacity: 1;
    background-color: #e1d5c4 !important;
    position: relative;
    top: 0; /* Ensure the background doesn't move upwards */
    z-index: -1; /* Ensure the background stays behind the content */
}

	/* Adjust height and position on mobile */
	@media (max-width: 768px) {
		.bg-body-tertiary-pistol {
			height: 200px; /* Adjust height for mobile */
			background-position: center; /* Ensure the background is centered */
			background-size: cover; /* Ensure the background fills the container */
		}
	}



.hover-effect {
  transition: transform 0.3s ease-in-out;
}

.hover-effect:hover {
  transform: translateY(-5px); /* Adjust the amount of movement as needed */
}



.magnify {
  position: relative;
  display: inline-block;
}

.magnify img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.magnify:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  cursor: -webkit-zoom-in; /* Change cursor to zoom-in on hover */
}


/* Responsive styles for products */
.product-item {
    flex: 0 0 30%;
    background-color: white;
    border: 1px solid #ddd;
    margin: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    text-align: center;
}

.product-item:hover {
    transform: scale(1.05);
}

.product-image {
    max-width: 100%;
    height: auto;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.2em;
    margin: 0 0 10px;
}

.product-description {
    color: #777;
    margin: 10px 0;
}

.product-price {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
}

.add-to-cart {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart:hover {
    background-color: #45a049;
}

/* Responsive styles */
@media (max-width: 768px) {
    .product-item {
        flex: 0 0 100%;
        margin: 10px 0;
    }
}

@media (max-width: 1200px) {
    .product-item {
        flex: 0 0 48%;
        margin: 10px 1%;
    }
}

.product_wrapper {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product_wrapper:hover {
  transform: translateY(-5px); /* Slight lift */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
}

/* Change the MRP button color when hovering over the product card */
.product_wrapper:hover .btn {
  background-color: #073c72 !important; /* Blue background */
  color: #fff !important; /* White text for better contrast */
}

/* Style for the MRP button */
 

.product-grid1 {
   display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 20px; /* Spacing between items */
    padding: 20px;
}
.product_wrapper.grid {
    border: 2px solid #EEECE6;
    background-color: #EEECE6;
    padding: 20px;
    transition: all .3s ease-in-out;
}
/* Responsive design */
@media (max-width: 1200px) {
    .product-grid1 {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
    }
}

@media (max-width: 768px) {
    .product-grid1 {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}
 .product-card {
    border: 1px solid #ddd;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-thumbnail {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 16px;
    display: block;
    border-radius: 4px;
}



.button {
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    display: inline-block;
    border-radius: 4px;
    margin-top: 12px;
}

.button:hover {
    background-color: #45a049;
}


.review {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.review h5 {
    font-size: 1.1em;
    color: #333;
}

.review .rating {
    color: gold;
}

#report-container {
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

#report-container iframe {
    border-radius: 8px;
}

h4 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
}


.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
    font-size: 14px;
}

.specs-table th, .specs-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.specs-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.product_wrapper.grid {
    border: 1px solid #ffffff;
	border-radius:25px;
    background-color: #EEECE6; /* Default background color */
    padding: 20px;
    transition: all .2s ease-in-out; /* Smooth transition for hover effect */
}

/* Hover effect */
.product_wrapper.grid:hover {
    background-color: white; /* Change background to white on hover */
    border-color: #fd5703; /* Optional: change border color on hover */
    transform: scale(1.05); 
	color:black;/* Optional: scale up the item on hover */
}

.product_wrapper.grid:hover .prod_link {
    background-color: #fd5703;
}

/* Specifications Table Styling */
.specs_table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-size: 16px;
  background-color: #f8f8f8;
}

.specs_table th, .specs_table td {
  padding: 10px;
  text-align: left;
  border: 1px solid #ddd;
}

.specs_table th {
  background-color: #eee;
  font-weight: 700;
  color: #333;
}

.specs_table td {
  font-weight: 500;
  color: #555;
}



.product_wrapper .prods .prod_title
{
	
    font-size: 34px;
    line-height: 42px;
    font-weight: 700;
    color: #2e3034a8;
    text-transform: uppercase;
    margin-bottom: 9px;
}

.product_wrapper .prods .prod_short_desc
{
	
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    font-family: var(--font-switzer);
    color: #2e3034a8;
}
.product_wrapper .prods .prod_img
{
	
   /*  margin-block: 30px; */
    aspect-ratio: 500 / 370;
    display: block;
    width: 100%;
    object-fit: contain;
}
.product_wrapper .prods .prod_link
{
	
  
    background: #eeece6;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    color: #2e3034a8;
    font-family: var(--font-switzer);
    padding: 18px 20px;
    border: 2px solid #9E9F9E;
    transition: all .3s ease-in-out;
}


.product_filter_sec .prod_filter_tags
{
   
    padding: -4px;
    list-style: none;
    display: flex;
    gap: 10px 50px;
    align-items: center;
    font-family: var(--font-clash-display);
    
    margin-bottom: 25px;
	margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
	
    

}
.product_filter_sec .prod_filter_tags li 
{
	font-family: inherit !important;
	appearance: Auto;
    border-radius: 0;
    padding: 18px 25px 18px 23px;
    background-color: #eeece6;
    border: 2px solid #9E9F9E;
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    color: #2e3034a8;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
	color: #005C9C;
}
.product_filter_sec .prod_filter_tags li a 
{
color:#113050;
    text-decoration: none;
}

.product_filter_sec .prod_filter_tags li:hover 
{
		background:white;
		border: 2px solid #fd5703;
}
.product_filter_sec .prod_filter_wrapper {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 54px;
}
.product_filter_sec .prod_filter_wrapper .prod_filter {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 25px;
	max-width: max-content;
	font-family: var(--font-clash-display);
}
.product_filter_sec .prod_filter_wrapper .prod_filter label {
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
	color: #2e3034a8;
	text-transform: uppercase;
}

.product_filter_sec .prod_filter_wrapper .prod_filter .filter_wrapper {
	display: flex;
	border: 2px solid #9E9F9E;
	border-right-width: 0;
	border-bottom-width: 0;
}

.product_filter_sec .prod_filter_wrapper select {
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
	padding: 18px 25px 18px 23px;
	font-size: 18px;
	line-height: 23px;
	font-family: var(--font-switzer);
	background-color: transparent;
	font-weight: 700;
	text-transform: uppercase;
	color: #2e3034a8;
	border: 2px solid #9E9F9E;
}

.product_filter_sec .prod_filter_wrapper #sort_by {
	background-image: url('https://bersausa.com/wp-content/uploads/2024/06/arrow_down.svg');
	background-position: center right 25px;
	background-repeat: no-repeat;
	background-size: 11px;
	padding-right: 40px;
	max-width: 280px;
}

.product_filter_sec .prod_filter_wrapper .prod_filter .filter_wrapper select {
	border-width: 0 2px 2px 0;
	min-width: 280px;
}

.product_filter_sec .filtered_product_result_wrapper {
	display: flex;
	flex-direction: column;
	gap: 94px;
	position: relative;
}

.product_filter_sec .filtered_product_result_wrapper .filtered_product h2 {
	font-size: 54px;
	line-height: 54px;
	font-weight: 700;
	color: #2e3034a8;
	font-family: var(--font-clash-display);
	text-transform: uppercase;
	margin-bottom: 53px;
}
.elementor-806 .elementor-element.elementor-element-8d0b817
{
	
    --display: flex;
    --flex-direction: column;
    --container-widget-width: 100%;
    --container-widget-height: initial;
    --container-widget-flex-grow: 0;
    --container-widget-align-self: initial;
    --flex-wrap-mobile: wrap;
    --background-transition: 0.3s;
    --padding-top: 95px;
    --padding-bottom: 180px;
    --padding-left: 20px;
    --padding-right: 20px;
}

.slick-prev, .slick-next
{
        background-color: #000;
        color: #fff;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
}
.slick-prev:hover, .slick-next:hover 
{
        background-color: #444;
}
    
.slick-prev 
{
        left: -50px;
}
    
.slick-next 
{
        right: -50px;
}




/* <!-- slider --> */

.slider-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: transparent; /* Remove background color */
  padding: 0; 
}

.slider {
  display: flex;            /* Align slides in a row */
  overflow: hidden;
}

.slide {

  box-sizing: border-box;
  padding: 10px;
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 2px solid transparent; 
  transition: border-color 0.3s ease; 

}





.prod_img {
  width: 100%;
  height: auto;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  z-index: 1;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Highlight selected slide */
.slick-slide.slick-current .prod_wrapper {
  border: 2px solid #007BFF; /* Highlight border color */
  border-radius: 10px;
}


@media (max-width: 768px) {
  .product_wrapper {
    height: auto; /* Adjust height for smaller screens */
  }
}



/* Container to hold the blocks in a row */
.info-blocks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Ensures blocks wrap to the next line if needed */
    margin-top: 0px;
    margin-bottom: 51px;
}

/* Each individual block */
.block {
    background-color: #d3d3d3; /* Custom color */
    padding: 20px;
    text-align: center;
    width: 30%; /* Each block takes up 30% of the row */
    margin: 9px;
}

/* Slight lift effect on hover */
.block:hover {
    /* Add any hover effect if needed */
}

/* Icon at the top of each block */
.icon {
    margin-bottom: 15px;
    font-size: 40px; /* Size of the icon */
    color: #333; /* Darker color for the icon */
}

/* Heading below the icon */
h3 {
    margin-bottom: 20px;
    font-size: 1.2em;
    color: #333; /* Darker color for the heading */
}

/* Button at the bottom of each block */
.block-button {
    padding: 10px 20px;
    background-color: #333; /* Dark button color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Button hover effect */
.block-button:hover {
    background-color: #fd5703; /* White background on hover */
    color: white; /* Dark text on hover */
    border: 1px solid #333; /* Add border on hover */
}

/* Responsive Design for Mobile Devices */
@media screen and (max-width: 768px) {
    .block {
        width: 80%; /* Blocks take up 80% of the width on smaller screens */
        margin: 10px auto; /* Center the blocks and add margin */
    }
}

@media screen and (max-width: 480px) {
    .block {
        width: 84%; /* Blocks take up full width on very small screens */
        margin: 18px 0; /* Remove left and right margin */
    }
}


.font-info-box
{	
	font-family: unset;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: normal;
    line-height: 1.58em;
}



/* Centered Title */
.category-title {
    text-align: center;
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 40px;
    margin-top: 40px;
    color: #333;
}

/* Categories Grid */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.category {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.category:hover {
    transform: scale(1.05);
    background-color: #fd5703;
}

.category a {
    color: inherit;
    text-decoration: none;
}

.category-image {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-name1 {
    padding: 18px;
    font-size: 18px;
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .category-title {
          Smaller title for mobile */
    }

    .categories {
        grid-template-columns: 1fr 1fr; /* 2 columns on medium screens */
    }

    .category-image {
        height: 150px; /* Reduce image height on smaller screens */
    }

    .category-name1 {
        font-size: 16px; /* Smaller font for mobile */
    }
}

@media (max-width: 480px) {
    .categories {
        grid-template-columns: 1fr; /* Single column layout on mobile */
    }

    .category-image {
        height: 120px; /* Further reduce image height on small screens */
    }

    .category-name1 {
        font-size: 14px; /* Smaller text size for mobile */
        padding: 10px;
    }
}

/* Ensure the video fills the hero section */
.site-hero video {
    object-fit: cover;
    width: 100%;
    height: 100vh;
}

/* Right-side counter styling */
.site-counter-right {
    position: absolute; /* Change from absolute to fixed */
    top: 20%;
    right: 0;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    width: 30%;
    color: #f3f2ef;
    z-index: 5;
    padding: 15px;
    border-radius: 8px;
}

.site-title {
    font-size: 36px;
    text-align: center;
    font-weight: bold;
    color: #fd5703;
    margin-bottom: 10px;
}

.site-tagline {
    font-size: 1.5rem;
    text-align: center;
    font-weight: 300;
    color: #f3f2ef;
    margin-bottom: 30px;
}

/* Counter number and title styling */
.site-counter-item-number {
    font-size: 2rem;
    color: #fd5703;
    font-weight: bold;
}

.site-counter-item-title {
    font-size: 1.2rem;
    color: #f3f2ef;
    font-weight: normal;
}

/* Adjustments for responsiveness */
@media (max-width: 768px) {
    .site-counter-right {
        width: 40%;
        padding: 10px;
    }

    .site-title {
        font-size: 1.8rem;
    }

    .site-tagline {
        font-size: 1.2rem;
    }

    .site-counter-item-number {
        font-size: 1.5rem;
    }

    .site-counter-item-title {
        font-size: 1rem;
    }
}

/* Product Card */
.product-container {
    margin-top: 20px;
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: auto;
}

.product-details {
    padding: 15px;
}

.product-details h2 {
    margin: 0;
    font-size: 1.5em;
}

.product-details p {
    margin: 10px 0;
}

.product-card a {
    color: #007bff;
    text-decoration: none;
}

.product-card a:hover {
    text-decoration: underline;
}

.color-swatch {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.customize-section {
    margin-top: 30px;
}

.customize-section label {
    margin-right: 10px;
}

/* Button Styling */
.blocaak {
    text-align: center;
}

.blocaak-button {
    padding: 10px 20px;
    background-color: #fd5703;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.blocaak-button:hover {
    background-color: #e14e00;
}

/* For small screens */
@media (max-width: 768px) {
    .blocaak-button {
          /* Make the button full width on mobile */
    }
}

	
	
.prod_cat
{
	font-size:21px;
}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	.pdf-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        overflow-y: auto;
        z-index: 1000;
    }
    .modal-content {
        position: relative;
        margin: auto;
        padding: 20px;
        background-color: #fff;
        max-width: 90%;
        max-height: 90%;
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    .close {
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 40px;
        color: #333;
        cursor: pointer;
    }
    .btn-download, .btn-view {
        display: inline-block;
        margin-top: 10px;
        padding: 10px 20px;
        background-color: #fd5703;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        cursor: pointer;
    }
    .btn-download i, .btn-view i {
        margin-right: 5px;
    }
    .fallback-message {
        margin-top: 10px;
        text-align: center;
        font-size: 16px;
        color: #555;
    }
    .fallback-message a {
        color: #4CAF50;
        text-decoration: underline;
    }
	
	
	
	.rating-display {
    display: flex;
    align-items: center;
    
  }
  .star {
    color: #FFD700; /* Gold for stars */
    margin-right: 0.2rem;
  }
  .star.half {
    position: relative;
  }
  .star.half::before {
    content: "★";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #FFD700; /* Gold for the filled part */
  }
  .star.half {
    color: #ccc; /* Grey for the unfilled part */
  }
  .rating-value {
    margin-left: 0.5rem;
    font-size: 1.2rem;
    color: #333; /* Text color for the rating value */
  }
  
  
  
  /* Ensure all boxes in the row are of equal height */
.equal-height {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}







/* General Hero Section */
.hero-container {
  position: relative;
  width: 100%;
 
  padding: 10px;
  box-sizing: border-box; /* Include padding in width calculation */
}

/* Model Viewer */
model-viewer {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Technical Details Button - Top Right */
.tech-details-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 2; /* Keep it above the model */
}

.tech-details-btn:hover {
  background-color: #555;
  transform: scale(1.05);
}

/* Technical Details Box */
.tech-details-box {
	position: absolute;
    top: 63px;
    right: 16px;
    max-width: 418px;
    width: 100%;
    padding: 18px;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 2;
    box-sizing: border-box;	
}

.tech-details-box.show {
  display: block; /* Show the box */
  animation: slideIn 0.3s ease-in-out;
}

/* Specifications Styling */
.spec-list {
  margin: 0;
  padding: 0;
}

.spec-item {
  font-size: 1.2rem; /* Large text for easy readability */
  margin: 10px 0;
  color: #333;
  line-height: 1.5;
}

.spec-item strong {
  font-weight: bold;
  color: #000; /* Darker color for key terms */
}

/* Slide-In Animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-container {
    padding: 10px;
  }

  model-viewer {
    height: 300px; /* Reduce height for smaller screens */
  }

  .tech-details-btn {
		 
        right: 3px;
        font-size: 0.9rem;
         
  }

 @media (max-width: 768px) {
  
}


  .tech-details-box h3 {
    font-size: 1.2rem;
    text-align: center;
	position:absolute;
  }

  .spec-item {
    font-size: 1rem; /* Adjust font size for smaller screens */
  }
}


/* Close Button Inside Message Box */
.tech-details-box .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  background-color: #ff4d4d;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 25px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  z-index: 3; /* Ensure it stays on top */
}

.tech-details-box .close-btn:hover {
  background-color: #ff1a1a;
  transform: scale(1.1);
}

  .color-selector .color-swatch {
    width: 50px; /* Increase size */
    height: 50px; /* Increase size */
    border-radius: 50%; /* Keep them circular */
    margin: 0 15px; /* Increase margin for better spacing */
    cursor: pointer;
    border: 3px solid #ddd; /* Thicker border */
  }

  .color-swatch:hover {
    border-color: #333; /* Darker border on hover */
  }
 .Specification1 li {
    margin-bottom: 10px; /* Add space between list items */
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Ensure bold labels are correctly displayed */
  .Specification1 li span {
    font-weight: bold;
  }

  /* Responsive adjustments for mobile devices */
  @media (max-width: 768px) {
    .Specification1 li {
      font-size: 0.9rem; /* Decrease font size for smaller screens */
      margin-bottom: 15px; /* Add more space between items on mobile */
    }
    
    /* Make sure the list items are fully responsive */
    .Specification1 {
      padding-left: 20px;
    }
    
    /* Adjust the title h2 */
    h2 {
      font-size: 1.5rem;
    }
  }

  /* For very small screens */
  @media (max-width: 480px) {
    .Specification1 li {
      font-size: 0.8rem; /* Further reduce font size for very small screens */
    }

    h2 {
      font-size: 1.3rem;
    }
  }
  
  .star-rating span,
.star-display span {
  font-size: 2em;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}
.star-rating span.active,
.star-display span.active {
  color: #f5c518; /* Gold for selected stars */
}
.star-rating span:hover,
.star-rating span:hover ~ span {
  color: #f5c518; /* Gold on hover */
}


.star-rating span {
  font-size: 2em;
  color: #ccc;
  cursor: pointer;
  margin-right: 5px;
}
.star-rating span.active,
.star-rating span:hover {
  color: #f5c518; /* Gold for active/hovered stars */
}
.tabs {
    margin: 0;
    border: 1px solid #e6e6e6;
    background: #fefefe;
    list-style-type: none;
}
 
 
 
 
  .product-card {
    border: 1px solid #ddd;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-thumbnail {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 16px;
    display: block;
    border-radius: 4px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
    font-size: 14px;
}

.specs-table th, .specs-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.specs-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.button {
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    display: inline-block;
    border-radius: 4px;
    margin-top: 12px;
}

.button:hover {
    background-color: #45a049;
}

 .custom-nav {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-size: 16px 16px; /* Adjust arrow icon size */
    width: 16px;
    height: 16px;
    filter: invert(1); /* Make the icon white */
  }

  .carousel-control-prev {
    left: 10px; /* Adjust positioning */
  }

  .carousel-control-next {
    right: 10px; /* Adjust positioning */
  }

  .custom-nav:hover {
    background-color: rgba(0, 0, 0, 0.7); /* Darker on hover */
  }
  .navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280,0,0,0.7%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}








/* Toggle Switch Styles */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #2196F3;
}
input:checked + .slider:before {
  transform: translateX(26px);
}

/* DARK MODE STYLING */
 

body.dark-mode .product {
  background-color: #1e1e1e;
  border: 1px solid #333;
}
body.dark-mode .product-btn {
  background-color: #333;
  color: #fff;
  border: 1px solid #555;
}
body.dark-mode select,
body.dark-mode option {
  background-color: #2a2a2a;
  color: #eee;
}
body.dark-mode #darkModeStar {
  color: gold;
}


body.dark-mode #darkModeToggle {
  color: #ffc107; /* Moon turns golden/yellow */
}

 
 

 /* Mega-menu styling for navbar dropdowns */
.navbar, .site-navigation {
  position: relative;
}

li.mega-dropdown {
  position: static;
}

li.mega-dropdown:hover .mega-menu,
li.mega-dropdown:focus-within .mega-menu {
  display: block;
}





.hero-slider1 {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.hero-slider1 img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 12px;
}

.hero-slide-caption1 {
  position: absolute;
  left: 5%;
  bottom: 14%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 24px 30px;
  border-radius: 10px;
  max-width: 400px;
  z-index: 2;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
}

.slide-btn {
  background: #ff9800;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 1rem;
  margin-top: 14px;
  cursor: pointer;
  transition: background .2s;
}

.slide-btn:hover {
  background: #ffb74d;
}
.slick-dots {
  bottom: 16px;
}

.slick-dots li button:before {
  font-size: 14px;
  color: #ff9800; /* Change dot color */
}
@media (max-width: 600px) {
  .hero-slide-caption1 {
    left: 4%;
    bottom: 10%;
    padding: 8px 10px;
    font-size: 0.9rem;
    max-width: 80%;
  }
  .slide-btn {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  .hero-slider1, .hero-slider1 img {
    height: 160px;
  }
}



.whatsapp-float {
    position: fixed;
    bottom: 7px;
    right: 64px;
    background: #25d366;
    color: #fff;
    border-radius: 23px;
    padding: 10px 18px 8px 19px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  background: #128c7e;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  color: #fff;
  text-decoration: none;
}
.whatsapp-float i {
  font-size: 28px;
  margin-right: 6px;
}
.whatsapp-float span {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 18px;
    right: 12px;
    padding: 10px 16px 10px 14px;
    font-size: 16px;
  }
  .whatsapp-float i {
    font-size: 22px;
  }
  .whatsapp-float span {
    font-size: 15px;
  }
}
 






.btn-media,
.btn-media:link,
.btn-media:visited {
  text-decoration: none;       /* remove underline */
  color: #fff;
  background: #222;
  padding: 7px 7px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn-media:hover,
.btn-media:active {
  text-decoration: none;
  background: #000;
  transform: translateY(-1px);
}
.btn-media:focus {
  outline: none; /* remove default */
}
.btn-media:focus-visible {
  box-shadow: 0 0 0 4px rgba(34,34,34,0.12), 0 0 0 2px rgba(255,255,255,0.02);
  border-radius: 8px;
}
.btn-media i { font-size: 14px; }

.media-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.media-card {
    background:#d3d3d3;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all .2s ease;
}

.media-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.media-title {
    font-size: 18px;
    font-weight: 600;
}

.media-card .thumbnail img,
.media-card video,
.media-card iframe {
    width: 100%;
    height: 255px;  
    object-fit: cover;
    border-radius: 8px;
}










