body {
    font-family: Arial, sans-serif;
}
.fs-1 {
    font-style: italic;
    color: blue;
}
img {
    border: none !important;
}

.first-container {
   /* border: 2px solid black; /* Change color as needed */
    /* Optional: rounded corners */
    padding: 10px; /* Optional: spacing inside the border */
}
.mb-0{
font-style: italic;
}
.custom-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('public/images/image_2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Keeps image fixed while scrolling (optional) */
    background-repeat: no-repeat;
    height: 100%; /* Full-screen height */
    display: flex; /* Keeps text centered */
    align-items: center; /* Vertically centers content */
    justify-content: center; /* Horizontally centers content */
}
.rectangle {
    width: 225px; /* Rectangle width */
    height: 180px; /* Rectangle height */
    background-color: white; /* Change color if needed */
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    font-weight: bold;
    text-align: center;
}
.rectangle img {
    width: 100%; /* Make the image fill the rectangle width */
    height: 100%; /* Make the image fill the rectangle height */
    object-fit: fill; /* Ensures the image fully covers the rectangle without distortion */
    border-radius: 5px; /* Optional: Rounded corners */
}
.image-text {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    color: white; /* Ensures text is visible */
    display: flex;
    justify-content: center;
    align-items: center;

}
.custom-button {
    font-size: 12px;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 30px; /* Rounded corners */
    border: 2px solid white; /* White border */
    transition: 0.3s;
}

.custom-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    border-color: white;
    color: #fff;
}

.mt-4.pb-5 {
    padding-bottom: 50px; /* Adjust if needed */
}
footer a {
    text-decoration: none; /* Remove underline */
}

footer a:hover {
    color: #0d6efd; /* Change color on hover */
    text-decoration: underline; /* Only underline on hover */
}
/* all product css*/
 .full-width-rectangle {
            background-color: #343a40; /* Dark background */
            color: white;
            text-align: center;
            padding: 15px;
            font-size: 1.5rem;
            font-weight: bold;

}
.old-price {
    text-decoration: line-through;
    color: red;

}



/* Full-width light gray rectangle */
.full-width-bar {
  width: 100%;  /* Changed from 100vw to 100% */
  height: 50px;
  background-color: #d3d3d3;
  position: absolute;
  left: 0;
  z-index: 1;
  /*top: 50%; */
  /*transform: translateY(-10%); */
  /* border: 2px solid red; */

}


/* Centered padded rectangle */
.padded-box {
  width: 86vw; /* Adjust width as needed */
  max-width: 1200px; /* Optional max width */
  height: 130px; /* Adjust height */
  background-color: #007bff; /* Primary blue */
  position: relative; /* Keeps it above the gray bar */
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
   /*border: 2px solid red;*/

 /* border-radius: 10px; /* Optional rounded corners */
}
.special-change {

  width: 100vw; /* Ensures it doesn’t exceed viewport width */
  overflow-x: hidden; /* Hides horizontal scroll */
  height: 100%;
  /* border: 2px solid red;*/
}

/* Single_product css starts here */

.custom-container {
    height: 100% !important;
}

.product-container {
            max-width: 1200px;
            margin: auto;
}
.product-image {
    max-width: 100%;
    height: auto;
}
.small-images img {
    width: 80px;
    height: auto;
    border: 2px solid #ddd;
    margin-bottom: 10px;
    cursor: pointer;
}
.discounted-price {
    text-decoration: line-through;
    color: gray;
}
.current-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
}

.breadcrumb-item {
    font-style: normal !important;

}

.breadcrumb a {
    text-decoration: none !important;
}
/* Fix extra space when collapsing */
#moreText {
    overflow: hidden;
    display: none; /* Ensures no space is added */
}

/* Smooth transition effect */
.collapsing {
    height: 0 !important;
    transition: height 0.3s ease-out;
}

.show {
    display: block !important; /* Ensures the expanded text is shown properly */
}

/* Centering the quantity section */
.quantity-label {
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
}

.quantity-box {
            width: 98px;
            height: 36px;
            border: 1px solid #ced4da;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            overflow: hidden;
}
.quantity-box input {
    width: 40px;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 14px;
    outline: none;
    padding: 0;
}
.quantity-box button {
    width: 28px;
    height: 100%;
    border: none;
    background-color: #f8f9fa;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* column create code */
.three-column-box .column-divider {
    border-right: 2px solid #ccc; /* Gray border for division */
    padding-right: 15px;
}

.three-column-box .column-divider:last-child {
    border-right: none; /* Remove border from the last column */
}

.circle-bullets {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: inline-block; /* Ensures it stays centered */
    text-align: left; /* Keep text aligned properly */
     padding-left: 25px;
}

/* Styling for bullet points */
.circle-bullets li {
    position: relative;
    padding-left: 15px; /* Adjust spacing between bullet and text */
    margin-bottom: 8px; /* Space between list items */
    font-size: 13px; /* Adjust font size if needed */
    line-height: 1.4; /* Improve readability */
}

/* Custom circle bullets */
.circle-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px; /* Bullet size */
    height: 8px;
    background-color: black;
    border-radius: 50%;
}
.product_description{
padding-left: 15px;
color: blue;
}

/* Providing hover effect on images */
.rectangle {
            position: relative;
            display: inline-block;

}

.image-container {
    display: block;
    position: relative;
}

.hover-text {
    position: absolute;
    bottom: 10%; /* Places text in the lower 20% */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    width: 80%;
    text-align: center;
}

.rectangle:hover .hover-text {
        opacity: 1;
    }
 /* Semi-transparent overlay effect */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.7);
}

/* add to cart css */
.hover-text {
position: absolute;
bottom: 20%;
left: 50%;
transform: translateX(-50%);
background: rgba(0, 0, 0, 0.7);
color: white;
padding: 10px;
border-radius: 5px;
display: none;
}
.rectangle:hover .hover-text { display: block; }

#cartDropdown {
position: fixed;
right: 20px;
top: 80px;
width: 600px;
height: 800px;
background: white;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
padding: 20px;
border-radius: 8px;
display: none;
z-index: 1050;
overflow-y: auto;
}
.cart-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.cart-item img { width: 60px; height: auto; margin-right: 10px; }
/*.quantity-box { display: flex; align-items: center; border: 1px solid #ddd; width: 96px; justify-content: space-between; }
.quantity-box button { background: #ddd; border: none; padding: 5px 10px; cursor: pointer; }
*/
.quantity-input {
    border: none;
    background: transparent;
    width: 40px;
    padding: 0;
    font-size: inherit;
    text-align: center;
    appearance: textfield;
}
/*.mb-3.form-label.form-control {
    width: 300px;
  }*/

.form-control {
    width: 300px;
    padding: 10px;
    border: 2px solid black;
    border-radius: 8px;
    font-size: 16px;
}