

body {
	background:#505D6E url( "imgs/bg_cover.jpg" ) no-repeat center center fixed; 
	min-height:100%;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;	
	  }
	.product-img-thumbnails {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.product-img-small {
    width: 100px;
    height: 100px; /* Set to same width for square layout */
    object-fit: contain; /* Ensures the image keeps its original aspect ratio */
    background-color:#6E6678; /* Light background for non-square images */
    cursor: pointer;
    transition: transform 0.3s ease, border 0.3s ease;
    border: 2px solid transparent;
    border-radius: 5px;
    padding: 5px; /* Adds space to center smaller images */
}

.product-img-small:hover {
    transform: scale(1.1);
    border: 2px solid #007bff;
}

/* Highlight the selected thumbnail */
.product-img-small.active {
    border: 2px solid #ff5722;
}

/* 📌 Mobile adjustments */
@media (max-width: 768px) {
    .product-img-small {
        width: 80px;
        height: 80px;
    }
}
	   /* Button Styling */
        .open-popup-btn {
            background-color:cadetblue;
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            border-radius: 5px;
			width: 30%;
			margin-top: -45px;
			margin-bottom: 30px,
        }



.imglogo {
	width: 150px;
	margin-top: 5%;
	max-width: 30%;
	max-height: auto;
	
            }
.view{
	
	margin-left: 5%;
	font-size: 8px;
	
	
            }
.products{
	position: relative;
    margin-left: 5%;
    text-align: center;
	font-size: 10px;
            }
.addCart{
	position: relative;
    text-align: center;
	max-width: 40%;
	
            }
		
/* Styling for mobile devices */
  @media screen and (max-width: 768px) {
    .addCart {
	position: relative;
    text-align: center;
	max-width: 62%;
	
	
    }
   .addCart div {
      display: block;
      margin-bottom: 18px;
    }
  .addCart img {
      width: 250px; /* Adjust image width for mobile */
    }
  }

  /* Further adjustments for very small mobile screens */
  @media screen and (max-width: 480px) {
   .addCart img {
      width: 300px; /* Smaller image width for smaller screens */
    }
  }

.payment{
	position: relative;
    text-align: center;
	max-width: 58%;
	
		}
		
/* Styling for mobile devices */
  @media screen and (max-width: 768px) {
   .payment {
      margin-left:20%;
	  margin-top:19px;
      text-align: center;
    }
  .payment div {
      display: block;
      margin-bottom: 18px;
    }
   .payment img {
      width: 250px; /* Adjust image width for mobile */
    }
  }

  /* Further adjustments for very small mobile screens */
  @media screen and (max-width: 480px) {
    .payment img {
      width: 300px; /* Smaller image width for smaller screens */
    }
  }

 .pay-direct{
      font-size: 18px; /* Adjust image width for mobile */
    }
  
	
.position-center{
	margin-left: auto;
	margin-right: auto;
	
            }
		

.round-dot {
  height: 8px;
  width: 8px;
  background-color: black;
  border-radius: 50%;
  display: inline-block;
}
/*--------------------- Popup Make Offer Starts Here --------------*/

/* Button Styling */
.open-popup-btn {
    background-color: cadetblue;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%; /* Full width for small screens */
    max-width: 300px; /* Limit width */
    margin: 0 auto; /* Center the button */
}

/* Modal Background */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

/* Modal Content */
.modal-content {
    background: white;
    padding: 15px;
    border-radius: 10px;
    width: 90%; /* Default width */
    max-width: 400px; /* Limit max width */
    height: 80vh; /* Set height for smaller screens */
    max-height: 90vh; /* Prevent modal from overflowing */
    overflow-y: auto; /* Allow vertical scrolling */
    position: relative;
}

/* Ensure iframe fully fits */
.modal-content iframe {
    width: 100%;
    height: 100%; /* Fill modal space */
    border: none;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: #62548A;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 14px;
}

/* Responsive Styling for Small Screens */
@media (max-width: 768px) {
    /* Button Styling */
    .open-popup-btn {
        font-size: 14px; /* Reduce font size */
        padding: 8px 16px; /* Adjust padding */
        width: 90%; /* Full width with small margin */
    }

    /* Modal Content */
    .modal-content {
        width: 95%; /* Occupy most of the screen */
        max-width: 320px; /* Reduce max width */
        padding: 10px; /* Adjust padding for compact layout */
    }

    /* Modal Content Inside iframe */
    .modal-content iframe {
        height: 80vh; /* Reduce height slightly */
    }

    /* Close Button */
    .close-btn {
        font-size: 12px; /* Smaller close button */
        padding: 4px 8px; /* Adjust padding */
    }
}


.product-img-thumbnails {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.product-img-small {
    width: 100px;
    height: 100px; /* Set to same width for square layout */
    object-fit: contain; /* Ensures the image keeps its original aspect ratio */
    background-color: #f8f8f8; /* Light background for non-square images */
    cursor: pointer;
    transition: transform 0.3s ease, border 0.3s ease;
    border: 2px solid transparent;
    border-radius: 5px;
    padding: 5px; /* Adds space to center smaller images */
}

.product-img-small:hover {
    transform: scale(1.1);
    border: 2px solid #007bff;
}

/* Highlight the selected thumbnail */
.product-img-small.active {
    border: 2px solid #ff5722;
}

/* 📌 Mobile adjustments */
@media (max-width: 768px) {
    .product-img-small {
        width: 80px;
        height: 80px;
    }
}



    .link-button {
        display: inline-block; /* Makes it behave like a button */
        text-align: center;
        width: 70%; /* Matches the width */
        background-color: #506F63; /* Matches background color */
        color: white; /* Ensures text is visible */
        padding: 10px 0; /* Adds spacing for the button feel */
        text-decoration: none; /* Removes underline */
        margin-left: 8px;; /* Matches the alignment */
        margin-top: -48px; /* Matches the offset */
        border: none; /* Removes any border */
		border-radius: 5px;
        cursor: pointer; /* Adds a pointer cursor for the link */
		font-family:Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
		font-size: 14px;
    }

    .link-button:hover {
        opacity: 0.9; /* Optional: Add a hover effect */
    }

 /* Tooltip button: Add a hover effect */
.tooltip-wrapper {
    position: relative; /* Tooltip is positioned relative to the wrapper */
    display: inline-block; /* Ensures inline layout */
}

.tooltip-text {
    visibility: hidden; /* Initially hidden */
    background-color: rgba(0, 0, 0, 0.85); /* Tooltip background color */
    color: #fff; /* Tooltip text color */
    text-align: center;
    padding: 8px 12px; /* Tooltip padding for better readability */
    border-radius: 6px; /* Rounded corners */
    position: absolute;
    bottom: 50px; /* Significantly increase the distance above the button */
    left: 50%; /* Horizontal centering */
    transform: translateX(-50%); /* Align the tooltip horizontally */
    white-space: nowrap; /* Prevents wrapping of tooltip text */
    font-size: 14px; /* Text size of the tooltip */
    opacity: 0; /* Tooltip is invisible by default */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth appearance */
    z-index: 10; /* Renders tooltip above everything */
    pointer-events: none; /* Prevent tooltip from blocking clicks on the button */
}

.tooltip-wrapper:hover .tooltip-text {
    visibility: visible; /* Display tooltip when hovering */
    opacity: 1; /* Fully opaque */
    transform: translateX(-50%) translateY(-15px); /* Adds slight upward motion */
}

	
	