
/* General styling for the message box */
.custom-alert {
   display: flex;
   justify-content: space-between; /* Aligns the message text and the close button */
   align-items: center; /* Vertically centers the content */
   background-color: #d7d9f8; /* Light red background similar to Bootstrap's 'danger' alert */
   color: #1c2372; /* Dark red text color */
   border: 1px solid #c6cbf5; /* Border for the alert box */
   padding: 15px 20px; /* Increased padding for better spacing */
   border-radius: 4px; /* Slight rounded corners */
   max-width: 100%; /* Full width of the container */
   margin: 20px auto; /* Center the message with top/bottom margin */
   box-sizing: border-box; /* Ensure padding and border are included in width calculation */
   font-size: 18px; /* Larger font size */
}

/* Styling for the close button */
.close-btn {
   background: none; /* No background */
   border: none; /* No border */
   color: #201c72; /* Same color as the text */
   font-size: 24px; /* Larger close button */
   font-weight: bold; /* Bold text for close button */
   cursor: pointer; /* Hand cursor */
}

/* Close button hover effect */
.close-btn:hover {
   color: #4878f3; /* Red color when hovering over the close button */
}

/* Mobile responsiveness (Optional) */
@media (max-width: 768px) {
   .custom-alert {
       padding: 10px; /* Adjust padding for smaller screens */
       font-size: 16px; /* Adjust font size for smaller screens */
   }
}
/*bundle*/
body {
   font-family: Arial, sans-serif;
   margin: 0;
   padding: 0;
   background-color: #f4f4f4;
}

.container {
   width: 80%;
   margin: auto;
   overflow: hidden;
}

.about {
   padding: 20px;
   background: #fff;
   margin-bottom: 20px;
   border-radius: 10px;
}

.about .row {
   display: flex;
   align-items: center;
}

.about .image img {
   width: 100%;
   border-radius: 10px;
}

.about .content {
   padding-left: 20px;
}

.about .content h3 {
   margin-bottom: 10px;
   font-size: 24px;
}

.about .content p {
   font-size: 16px;
   line-height: 1.6;
}

.about .btn {
   display: inline-block;
   padding: 10px 20px;
   background: #333;
   color: #fff;
   border-radius: 5px;
   text-decoration: none;
}

.reviews {
   padding: 20px;
   background: #fff;
   margin-bottom: 20px;
   border-radius: 10px;
}

.reviews h1 {
   font-size: 24px;
   margin-bottom: 20px;
}

.reviews-container, .comments-container {
   display: flex;
   flex-direction: column;
}

.review, .comment {
   background: #f9f9f9;
   padding: 15px;
   border-radius: 5px;
   margin-bottom: 10px;
}

.review p, .comment p {
   margin: 5px 0;
}

.stars i {
   color: #f0c40e;
}

.rating-form, .comment-form {
   margin-top: 20px;
}

.rating-form h2, .comment-form h2 {
   margin-bottom: 10px;
}

.rating-form select, .comment-form textarea, .rating-form textarea {
   width: 100%;
   padding: 10px;
   margin: 10px 0;
   border-radius: 5px;
   border: 1px solid #ccc;
}

.rating-form button, .comment-form button {
   padding: 10px 20px;
   background: #333;
   color: #fff;
   border: none;
   border-radius: 5px;
   cursor: pointer;
}

.rating-form button:hover, .comment-form button:hover {
   background: #555;
}


.heading{
    font-size: 4rem;
    color:var(--black);
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    margin-top: 20px;
 }
 
         /* Empty message */
         .empty {
             text-align: center;
             color: #666;
         }
         .bundle .bundle-container .bundle img{
    height: 20rem;
    width: 100%;
    object-fit: contain;
    margin-bottom: 1rem;
 }

         .bundled .bundle-container .bundle{
    position: relative;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
    border:var(--border);
    padding:2rem;
    overflow: hidden;
 }
 .bundled .bundle-container .bundle .fa-eye{
    position: absolute;
    top:1rem;
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.2rem;
    font-size: 2rem;
    background-color: var(--white);
    border:var(--border);
    border-radius: .5rem;
    text-align: center;
    color:var(--black);
    cursor: pointer;
    transition: .2s linear;
 }
 
 .bundled .bundle-container .bundle .fa-eye{
    left: -6rem;
 }
 
 .bundled .bundle-container .bundle .fa-eye:hover{
    background-color: var(--black);
    color:var(--white);
 }
 
 .bundled .bundle-container .bundle:hover .fa-eye{
    left:1rem;
 }
 
 .bundled .bundle-container .bundle .flex{
    display: flex;
    align-items: center;
    gap:1rem;
 }
 
 .bundled .bundle-container .bundle .flex .qty{
    width: 7rem;
    padding:1rem;
    border:var(--border);
    font-size: 1.8rem;
    color:var(--black);
    border-radius: .5rem;
 }
 
 .bundled .bundle-container .bundle .flex .original_price .discounted_price{
    font-size: 2rem;
    color:var(--red);
    margin-right: auto;
 }
 .discounted_price {
     color: green;
     font-size: 20px;
     font-weight: bold;
     }
     .original_price {
     color: red;
     text-decoration: line-through;
     font-size: 18px;
 
     }
 .bundle h2{
     font-size: 25px;
 }
 .bundle_desc
 {
     font-size: 16px;
     word-break: break-word;
 }
 .stock{
     font-size: 18px;
 }
 form.bundle{
     margin-top: 30px;
 }

 .bundled .bundle-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr)); /* Adjust the min-width and max-width as needed */
   gap: 1.5rem;
   justify-content: center;
   align-items: flex-start;
}

.bundled .box {
   position: relative;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
   border: var(--border);
   padding: 2rem;
   overflow: hidden;
}

.bundled .box img {
   height: 20rem;
   width: 100%;
   object-fit: contain;
   margin-bottom: 1rem;
}

/* Add the rest of your styles here */

 /*quick view*/


 .empty{
    margin-top: 1rem;
 }
 .quick-view-bundle form{
 padding:2rem;
 border-radius: .5rem;
 background-color: var(--white);
 box-shadow: var(--box-shadow);
 margin-top: 1rem;
 margin-bottom: 1rem;
}

.quick-view-bundle form .row{
 display: flex;
 align-items: center;
 gap:1.5rem;
 flex-wrap: wrap;
}

.quick-view-bundle form .row .image-container{
 margin-bottom: 2rem;
 flex:1 1 40rem;
}

.quick-view-bundle form .row .image-container .main-image img{
 height: 30rem;
 width: 100%;
 object-fit: contain;
}

.quick-view-bundle form .row .image-container .sub-image{
 display: flex;
 gap:1.5rem;
 justify-content: center;
 margin-top: 2rem;
}

.quick-view-bundle form .row .image-container .sub-image img{
 height: 7rem;
 width: 10rem;
 object-fit: contain;
 padding:.5rem;
 border:var(--border);
 cursor: pointer;
 transition: .2s linear;
}

.quick-view-bundle form .flex .image-container .sub-image img:hover{
 transform: scale(1.1);
}

.quick-view-bundle form img{
 width: 100%;
 height: 20rem;
 object-fit: contain;
 margin-bottom: 2rem;
}

.quick-view-bundle form .row .bundle-content{
 flex:1 1 40rem;
}

.quick-view-bundle form .row .bundle-content .name{
 font-size: 2rem;
 color:var(--black);
}

.quick-view-bundle form .row .flex{
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap:1rem;
 margin:1rem 0;
}

.quick-view-bundle form .row .flex .qty{
 width: 7rem;
 padding:1rem;
 border:var(--border);
 font-size: 1.8rem;
 color:var(--black);
 border-radius: .5rem;
}

.quick-view-bundle form .row .flex .original_price{
 font-size: 2rem;
 color:var(--red);
}

.quick-view-bundle form .row .bundle-content .bundle_desc,
.quick-view-bundle form .row .bundle-content .additional_desc{
 font-size: 1.6rem;
 color:var(--light-color);
 line-height: 2;
}






