/* LOADING SCREEN START*/
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 1); /* Bright white background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensure it overlays everything */
}

/* Loader */
.loader {
  width: 220px; /* Larger size */
  height: 270px; /* Larger size */
  background-color: #f0f0f0; /* Slightly brighter to stand out */
  background-repeat: no-repeat;
  background-image: linear-gradient(#ddd 50%, #bbb 51%), 
    linear-gradient(#ddd, #ddd), 
    linear-gradient(#ddd, #ddd),
    radial-gradient(ellipse at center, #888 25%, #eee 26%, #eee 50%, #0000 55%),
    radial-gradient(ellipse at center, #888 25%, #eee 26%, #eee 50%, #0000 55%),
    radial-gradient(ellipse at center, #888 25%, #eee 26%, #eee 50%, #0000 55%);
  background-position: 0 20px, 75px 0, 15px 10px, 120px 6px, 170px 6px, 220px 6px;
  background-size: 100% 6px, 2px 40px, 40px 12px, 25px 25px, 25px 25px, 25px 25px;
  position: relative;
  border-radius: 8%;
  animation: shake 3s ease-in-out infinite;
  transform-origin: 110px 300px; /* Adjusted to match new size */
}

.loader:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 100%;
  width: 10px;
  height: 7px;
  background: #888; /* Darker for better visibility */
  border-radius: 0 0 5px 5px;
  box-shadow: 170px 0 #888; /* Adjusted for larger loader */
}

.loader:after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 30px;
  background-color: #bbdefb;
  background-image: linear-gradient(to right, #0004 0%, #0004 49%, #0000 50%, #0000 100%),
    linear-gradient(135deg, #64b5f6 50%, #607d8b 51%);
  background-size: 50px 100%, 120px 100px;
  border-radius: 50%;
  background-repeat: repeat, no-repeat;
  background-position: 0 0;
  box-sizing: border-box;
  border: 15px solid #ddd;
  box-shadow: 0 0 0 5px #999 inset, 0 0 10px 10px #0004 inset; /* Enhanced visibility */
  animation: spin 3s ease-in-out infinite;
}
/* LOADING SCREEN END */




/* LOGO STYLING START*/
.logo {
  flex: 0 0 auto; /* Keeps the logo fixed on the left */
}

.logo img {
  height: 150px; /* Adjust the size of the logo */
  vertical-align: middle;
}
/* LOGO STYLING END*/



/* Basic Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}



/*NAVIGATION BAR START*/
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .logo {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  @media (max-width: 480px) {
    .logo img {
      height: 80px;
    }
  
    .nav-menu a {
      font-size: 0.95rem;
      padding: 8px 12px;
    }
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative; /* <- NEW: prevents clashing with absolute in desktop */
    left: auto;
    transform: none;
    width: auto;
    margin-top: 10px;
  }

  .nav-menu li {
    margin: 10px 0;
    text-align: center;
  }
}


.nav-menu a:hover {
  background-color: #555;
  border-radius: 4px;
}

/* PRODUCTS DROPDOWN STYLING START */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #444;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: white;
  padding: 10px 15px;
  display: block;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #555;
}

.dropdown:hover .dropdown-content {
  display: block;
}
/*PRODUCTS DROPDOWN STYLING END*/
/*NAVIGATION BAR END*/


/* FOOTER AND SOCIAL MEDIA BUTTONS STYLING START */
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Content Wrapper */
.content {
  flex: 1; /* Pushes the footer to the bottom */
}

/* FOOTER AND SOCIAL MEDIA BUTTONS STYLING START */
.footer {
  background-color: #f8f9fa; /* Light footer background */
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Optional top shadow for separation */
  width: 100%;
}
.footer-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  background-color: #f8f9fa; /* Light footer background color */
}

.footer-social-icons .icon-content {
  margin: 0 15px; /* Adjust spacing between icons */
  position: relative;
}

.footer-social-icons .icon-content .tooltip {
  position: absolute;
  bottom: 70px; /* Adjust position for the footer */
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  background-color: rgba(0, 0, 0, 0.75); /* Dark background for tooltips */
  transition: all 0.3s ease;
}

.footer-social-icons .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  bottom: 90px;
}

.footer-social-icons .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add a subtle shadow for depth */
  transition: all 0.3s ease-in-out;
}

.footer-social-icons .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}

.footer-social-icons .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}

.footer-social-icons .icon-content a:hover {
  color: white;
}

.footer-social-icons .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}

.footer-social-icons .icon-content a:hover .filled {
  height: 100%;
}

.footer-social-icons .icon-content a[data-social="linkedin"] .filled,
.footer-social-icons .icon-content a[data-social="linkedin"] ~ .tooltip {
  background-color: #0274b3;
}

.footer-social-icons .icon-content a[data-social="github"] .filled,
.footer-social-icons .icon-content a[data-social="github"] ~ .tooltip {
  background-color: #24262a;
}

.footer-social-icons .icon-content a[data-social="instagram"] .filled,
.footer-social-icons .icon-content a[data-social="instagram"] ~ .tooltip {
  background: linear-gradient(
    45deg,
    #405de6,
    #5b51db,
    #b33ab4,
    #c135b4,
    #e1306c,
    #fd1f1f
  );
}

.footer-social-icons .icon-content a[data-social="youtube"] .filled,
.footer-social-icons .icon-content a[data-social="youtube"] ~ .tooltip {
  background-color: #ff0000;
}

/* Adjustments for responsiveness */
@media (max-width: 768px) {
  .footer-social-icons {
    flex-wrap: wrap; /* Allow icons to wrap on smaller screens */
    padding: 15px 0;
  }

  .footer-social-icons .icon-content {
    margin: 10px; /* Adjust spacing for smaller screens */
  }
}
/* FOOTER AND SOCIAL MEDIA BUTTONS STYLING END */


/* SEARCH BAR STYLING START */

.search-bar {
  position: relative;
  width: 300px; /* Adjust width to fit your layout */
  margin: 10px auto; /* Center it within the nav */
}

#search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-top: none;
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 14px;
}

#search-suggestions a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
  transition: background 0.3s;
}

#search-suggestions a:hover {
  background: #f0f0f0;
}

.search-bar input {
  height: 35px;
  padding: 0 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  width: 200px;
}

.search-bar input:focus {
  outline: none;
  border-color: #555;
}

.search-bar button {
  height: 35px;
  background-color: #555;
  color: white;
  border: none;
  padding: 0 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

.search-bar button:hover {
  background-color: #777;
}
/* SEARCH BAR STYLING END */


/* ADD TO CART STYLING START */
main {
  padding-bottom: 120px; /* Adjust based on the height of your cart */
}

.cart {
  transform: translateY(100%); /* Hidden below the screen */
  opacity: 0; /* Fully transparent */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  max-width: 500px;
  max-height: 300px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cart.visible {
  transform: translateY(0); /* Slide into view */
  opacity: 1; /* Fully visible */
}

.cart.active {
  transform: translateY(-20px); /* Moves the cart into view */
}

.cart.highlight {
  background-color: #007bff;
  color: white;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.cart h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.cart ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cart li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cart li span {
  font-size: 1rem;
}

#cart-total {
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
}

.cart-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: white;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.cart-icon:hover {
  transform: scale(1.1);
}

.cart-icon span {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: red;
  color: white;
  font-size: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ADD TO CART STYLING END */


/*CHECKOUT BUTTON, FORM AND CONTAINER STYLING START*/
#delivery-form select,
#delivery-form textarea {
  background-color: #f9f9f9; /* Match your website's light background tone */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

#delivery-form textarea {
  height: 100px; /* Set a height for the textarea */
  resize: none; /* Disable resizing completely */
}

#delivery-form h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #333; /* Match your website's text color */
}

#delivery-form label {
  display: block;
  font-weight: bold;
  margin-top: 10px;
  color: #555;
}

#delivery-form input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
  color: #333;
}

.delivery-instructions-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
  box-sizing: border-box;
}

label {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 14px;
  margin-bottom: 0.5rem;
}

textarea {
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.5rem;
  font-size: 14px;
  font-family: Arial, sans-serif;
  resize: none; /* Disable resizing */
}

textarea:focus {
  outline: none;
  border-color: #007acc;
}

.terms-container {
  display: flex;
  align-items: center; /* Vertically align checkbox and text */
  margin-top: 1rem;
  font-size: 14px;
}

.terms-container input[type="checkbox"] {
  margin-right: 0.5rem;
  transform: translateY(2px); /* Adjust alignment slightly if needed */
}

.terms-link {
  color: black; /* Set text to black explicitly */
  text-decoration: underline;
  cursor: pointer;
}

.terms-link:hover {
  text-decoration: none;
}


#checkout-button {
  display: block;
  width: 90%; /* Make it nearly full width for a modern look */
  margin: 10px auto; /* Center the button with spacing */
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#checkout-button:hover {
  background-color: #0056b3; /* Darker blue on hover */
  transform: scale(1.05); /* Slight zoom effect */
}

#checkout-button:active {
  background-color: #004085; /* Even darker blue when clicked */
  transform: scale(1); /* Reset zoom effect */
}

#checkout-button:disabled {
  background-color: #cccccc; /* Grey color for disabled state */
  cursor: not-allowed;
}

.checkout-container {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.checkout-container h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 20px;
}

.checkout-container ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.checkout-container ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.checkout-container .total {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.complete-purchase-button {
  display: block;
  width: 90%; /* Full width with slight margin */
  margin: 15px auto; /* Centered with spacing */
  padding: 12px 20px; /* Comfortable padding for size */
  font-size: 1rem; /* Readable font size */
  font-weight: bold; /* Bold text for emphasis */
  color: #fff; /* White text */
  background-color: #28a745; /* Green background for positive action */
  border: none;
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor for interactivity */
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.complete-purchase-button:hover {
  background-color: #218838; 
  transform: scale(1.05); /* ZOOM EFFECT */
}

.complete-purchase-button:active {
  background-color: #1e7e34; 
  transform: scale(1); /* RESET ZOOM EFFECT */
}

.complete-purchase-button:disabled {
  background-color: #cccccc; /* GREY BACKGROUND FOR DISABLED STATE */
  cursor: not-allowed; /* DISABLE CURSOR */
  color: #666666; 
}
/*CHECKOUT BUTTON, FORM AND CONTAINER STYLING END*/


/*LAPTOP PAGE STYLING START*/
/* PRODUCTS STYLING START*/
#laptops {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  align-items: center;
}

/* Product Grid */
.product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

/* Product Card */
.product {
  width: 300px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Product Image */
.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Product Title */
.product h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

/* Product Price */
.product p:first-of-type {
  font-size: 1.25rem;
  color: #007bff;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Product Description */
.product p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 20px;
}

/* Add to Cart Button */
.product button {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product button:hover {
  background-color: #0056b3;
}
/*LAPTOP PAGE STYLING END*/



/* CONTACT PAGE STYLING */
#contact {
  padding: 40px;
  text-align: center;
  background-color: #f9f9f9;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
}

.contact-container h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  text-align: left;
}

.form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #555;
}

.submit-button {
  padding: 10px 20px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

.submit-button:hover {
  background-color: #555;
}
/*CONTACT PAGE STYLING END*/



/*LANDING PAGES STYLING START*/
/* CATEGORIES SECTION */
#categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* ADJUST THE CONTENT */
  gap: 20px; /* SPACE BETWEEN GRID ITEMS */
  justify-content: center; /* CENTERS THE GRID */
  justify-items: center; /* CENTERS THE CONTENT INSIDE EACH GRID CELL */
  margin: 0 auto; /* CENTER GRID HORIZONTALLY */
  width: 100%; 
  max-width: 1200px; 
  padding: 20px; 
}

.category {
  flex: 1 1 calc(33.333% - 40px); 
  max-width: 250px; 
  text-align: center;
  margin: 0 auto; 
}


.category img {
    width: 250px; 
    height: 150px; 
    object-fit: cover; 
    border-radius: 5px;
  }

  .card-content {
    display: flex;
    flex-direction: column; 
    align-items: center; /* ALIGN TEXT AND BUTTONS */
    gap: 0.5rem; 
    margin-top: 1rem; /* SPACE BETWEEN IMAGES AND OTHER CONTENT */
  }


.category h2 {
  margin-top: 10px;
  font-size: 1.2rem;
  
}

.category a {
  text-decoration: none;
  color: black;
}
.category a:visited {
  color: black; /* LINKS STAY THE SAME COLOR AFTER CLICKING */
}

.category a:hover {
  color: gray; 
}

.category a:active {
  color: darkgray; 
}
/* LANDING PAGES STYLING END */



/* MAKE MAIN IMAGE CLICKABLE */
.clickable {
  cursor: pointer;
}

/* MODALL STYLING / POPUP FOR CLICKING ON PRODUCT IMAGES */
.modal {
  display: none; /* HIDDEN BY DEFAULT */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8); /* BLACK BACKGROUND */
}

.modal-content {
  margin: 5% auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  max-width: 600px;
  text-align: center;
  
}

.modal li {
  list-style: none;
}

.modal img {
  width: 100%; 
  max-width: 600px; 
  height: 600px; 
  object-fit: contain; 
  margin-bottom: 20px;
}

.thumbnails {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}

.thumbnails img {
  width: 60px; 
  height: 60px; 
  object-fit: cover; 
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.thumbnails img:hover {
  border-color: #007bff;
}

/* CLOSE BUTTON */
.close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  font-weight: bold;
  color: white;
  cursor: pointer;
}


/*ABOUT PAGE STYLING START*/
.about-section {
  padding: 40px 20px;
  background-color: #f5f5f5; 
  font-family: Arial, sans-serif;
  color: #333; 
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section h1 {
  font-size: 2.5rem;
  color: #0073e6; 
  text-align: center;
  margin-bottom: 20px;
}

.about-section h2 {
  font-size: 1.8rem;
  color: #005bb5; 
  margin-top: 30px;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #555; 
}

.about-section ul {
  list-style-type: none;
  padding-left: 0;
}

.about-section ul li {
  font-size: 1rem;
  margin-bottom: 10px;
  padding: 10px;
  background-color: #ffffff; /* WHITE BACKGROUND FOR LIST ITEMS */
  border-left: 4px solid #0073e6; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}

.about-section ul li strong {
  color: #333; 
}

.about-section p,
.about-section ul li {
  text-align: justify; /* TEXT ALIGNMENT */
}

.about-section a {
  color: #0073e6;
  text-decoration: none;
  font-weight: bold;
}

.about-section a:hover {
  text-decoration: underline;
}

/* TEAM MEMBER STYLING START*/
.team-container {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.team-member {
  text-align: center;
  max-width: 500px;
  flex-shrink: 0; /* PREVENT SHRINKING IN THE FLEX CONTAINER */
}

.team-member img {
  width: 400px; /* IMAGE SIZE */
  height: 400px; /* IMAGE SIZE */
  object-fit: cover; 
  border-radius: 50%; /* KEEP CIRCULAR APPEARANCE */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
  font-size: 1.2rem;
  margin-top: 10px;
}

.team-member p {
  color: #555;
}
/* TEAM MEMBER STYLING END*/
/*ABOUT PAGE STYLING END*/


/*BREADCRUMBS STYLING START */
#breadcrumbs {
  font-family: Arial, sans-serif;
  font-size: 16px;
  margin: 15px 0;
  padding: 10px;
  background-color: #f9f9f9; 
  border-radius: 8px; /* ROUNDED CORNERS */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
  display: inline-block;
}

.breadcrumb-item {
  color: black;
  text-decoration: none;
  font-weight: bold; 
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease; /* SMOOTHER HOVER EFFECT/DELAY */
}

/* HOVER EFFECT STYLING */
.breadcrumb-item:hover {
  background-color: #e0e0e0; 
  color: #333; 
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* SHADOW EFFECT FOR TEXT */
}

/* ACTIVE BREADCRUMB (CURRENT PAGE) */
.breadcrumb-item.active {
  color: #666; 
  background-color: #dcdcdc; 
  pointer-events: none;
  font-style: italic; 
}

/* BREADCRUMBS SEPARATOR (SLASH/ARROW) */
#breadcrumbs .separator {
  color: #aaa; 
  margin: 0 5px;
}
/*BREADCRUMBS STYLING END */



/*FEATURED PRODUCTS SLIDER STYLING START */
.featured-products {
  margin: 2rem 0;
  text-align: center;
}

.slider {
  position: relative;
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
}

.slider-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}


.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.product-card {
  flex: 0 0 100%; /* EACH SLIDE TAKES 100% OF THE CONTAINER */
  max-width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  text-align: center;
}

.product-card img {
  max-width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}



.product-card h3 {
  margin: 0.5rem 0;
}

.product-card p {
  font-weight: bold;
  margin: 0.5rem 0;
}

.product-card .btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.product-card .btn:hover {
  background-color: #0056b3;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  padding: 0.8rem;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s, transform 0.3s;
}

.prev-btn {
  left: 30px; /* MOVE CLOSE TO IMAGE WITHOUT TOUCHING IT */
}

.next-btn {
  right: 30px;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}
/*FEATURED PRODUCTS SLIDER STYLING END */



/* SHOP BY CATEGORY SLIDER STYLING START */
.categories {
  margin: 3rem 0;
  padding: 0 2rem;
  
}

.category-slider {
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.category-slider h3 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 1rem; /* SPACE BETWEEN CARDS */
}

.category-card {
  flex: 0 0 23%; 
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s;
  overflow: hidden; /* ENSURES CONTENT DOESN'T SPILL OUT OF THE CONTAINER */
  display: flex; /* ENABLES FLEXBOX LAYOUT */
  flex-direction: column; /* STACK ITEM VERTICALLY */
  align-items: center; /* CENTER ITEMS HORIZONTALLY */
  justify-content: space-between; /* SPACE OUT CONTENT EVENLY */
}

.category-card:hover {
  transform: translateY(-10px);
}

.category-card img {
  width: 100%;
  height: auto; /* Automatically adjusts height based on width to maintain aspect ratio */
  max-height: 450px; /* MAX PICTURE SIZE */
  object-fit: contain; /* KEEPS ASPECT RATIO WITHOUT CROPPING THE IMAGE */
  border-radius: 8px;
}

.category-card h4 {
  margin: 1rem 0;
  font-size: 1.2rem;
}

.category-card .btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
}

.category-card .btn:hover {
  background-color: #0056b3;
}

/* SLIDER BUTTONS ALIGNMENT */
.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.7); 
  color: white;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  padding: 1rem;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.prev-btn {
  left: 1rem;
}

.next-btn {
  right: 1rem;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.7); 
  color: white;
  border: none;
  font-size: 2.5rem; /* INCREASES FONT SIZE */
  cursor: pointer;
  z-index: 10;
  padding: 1rem; 
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* ADD SHADOW */
}

.prev-btn {
  left: 1rem; 
}

.next-btn {
  right: 1rem; 
}

.prev-btn:hover,
.next-btn:hover {
  background-color: rgba(0, 0, 0, 0.9); /* DARK EFFECT ON HOVER */
  transform: translateY(-50%) scale(1.1); /* BIGGER BUTTON ON HOVER */
}
/*SHOP BY CATEGORY SLIDER STYLING END */


/* ALL PRODUCTS SECTION STYLING START */
.product-link-button {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 15px 25px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.product-link-button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

.all-products-section {
  text-align: center;
  margin: 50px 0;
}

.product-preview {
  width: 250px;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: #fff;
}

.product-preview img {
  width: 100%;
  height: 200px;
  object-fit: cover; /* KEEP ASPECT RATION */
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
/* ALL PRODUCTS SECTION STYLING END */


/* REVIEWS CAROUSEL STYLING START */
.reviews {
  text-align: center;
  padding: 2rem;
  background-color: #f9f9f9;
}

.reviews h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
}

/* FLEXBOX FOR CENTERING THE REVIEWS */
.review-carousel {
  position: relative;
  overflow: hidden;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.review {
  opacity: 0;
  position: absolute;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transform: scale(0.95);
  width: 80%;
  max-width: 600px;
  background-color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.review.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
/* REVIEWS CAROUSEL STYLING END */

