/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header{
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white; /* Optional: to ensure the header has a background */
    z-index: 1000; /* Optional: to ensure the header stays on top of other elements */ 
}

.main{
    min-height: 700px;
    margin-top: 220px;
    background: linear-gradient(to bottom, #ffffff, #000000);
    transition: background 0.5s ease; /* Smooth transition for background change */
}

.main-Prd{
    margin-top: 180px;
    background: linear-gradient(to bottom, #ffffff, #000000);
    transition: background 0.5s ease; /* Smooth transition for background change */
}

.main-Crt{
    min-height: 700px;
    margin-top: 220px;
    background: linear-gradient(to bottom, #ffffff, #000000);
    transition: background 0.5s ease; /* Smooth transition for background change */
}

/* Navbar layout */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 10px;
    padding-left: 20px;
}

.container{
    background-color: #ffffff;
}

.logo{
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Logo on the left */
.logo img{
    display: flex;
    align-items: center;
    max-width: 150px;
    max-height: 150px;
    margin-left: 20px;
    margin-right: 10px;
    border-radius: 50%; /* This makes the image circular */
}

.social {
    position: fixed;
    margin-top: 20px; /* Place it 20px from the top */
    margin-left: 175px; /* 175px from the left */
    display: flex;
    flex-direction: column; /* Stack the icons vertically */
    gap: 10px; /* Space between icons */
    z-index: 100; /* Ensure the icons are on top of other content */
}

.social a {
    display: inline-block; /* Keep the link wrapped around the image */
    width: 40px; /* Set width for each icon */
    height: 40px; /* Set height for each icon */
}

.social img {
    width: 100%; /* Fill the anchor element */
    height: 100%; /* Fill the anchor element */
    display: block; /* Prevents unwanted spacing below images */
}


/* Centered search bar */
.search-bar {
    position: absolute;
    top: 50px;
    left: 50%; /* Horizontally center */
    transform: translateX(-50%) translateX(-19px); /* Adjust to perfectly center it */
    flex: 2;
    width: 500px;
    
}

.search-bar input[type="text"] {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    outline: none;
    width: 100%;
    font-size: 14px;
}

.search-bar button {
    position: absolute;
    background-color: #333;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 16px;
}


/*-----------------------------------------------------------------------------------------------*/

.container2 {
    position: absolute;
    top: 100px;
    margin-left: 10px; 
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Navigation links directly below the search bar */
nav {
    width: 100%;
    margin-top: 10px;
    text-align: center;
}


#NavItems {
    display: flex; /* Display items in a row */
    justify-content: center; /* Center the navigation items horizontally */
    list-style: none;
    padding: 0;
    margin: 0; /* Ensure there's no margin that pushes the items down */
}

/* Each nav item should be spaced horizontally */
#NavItems li {
    margin-right: 20px; /* Space between the items */
}

/* Link style */
#NavItems li a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 25px;
}

/* Hover effect for links */
#NavItems li a:hover {
    color: #007bff;
}

.offer {
    color: #000000;
    position: absolute;
    top: 140px; /* Vertical positioning */
    left: 50%; /* Horizontally center */
    transform: translateX(-50%); /* Adjust to perfectly center it */
    margin-bottom: 20px;
}

.cart-icon-main {
    position: absolute;
    width: 40px;  /* Set the size of the cart icon */
    height: 40px; /* Same as width to keep it a square */
    right: 80px;
    cursor: pointer; /* Show a pointer cursor when hovering over the icon */
    background-color: #f8f8f8; /* Background color for the icon */
    padding: 8px; /* Add some padding around the icon */
    border-radius: 50%; /* Make the icon round */
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2); /* Add a shadow effect */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover effects */
}

.cart-icon-main2 {
    width: 40px;  /* Set the size of the cart icon */
    height: 40px; /* Same as width to keep it a square */
    margin-right: 10px;
    cursor: pointer; /* Show a pointer cursor when hovering over the icon */
    background-color: #ffffff; /* Background color for the icon */
    padding: 8px; /* Add some padding around the icon */
    border-radius: 50%; /* Make the icon round */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover effects */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 150px;
}

.cart-icon-main:hover {
    background-color: #007bff; /* Change background color on hover */
    transform: scale(1.1); /* Slightly enlarge the icon on hover */
}

.cart-icon-main img {
    width: 20px; /* Set the size of the cart image inside the icon */
    height: 20px; /* Same as width to keep it proportional */
    object-fit: contain; /* Make sure the image fits well inside the icon */
}

.cart-dropdown {
    margin-top: 35px;
    display: none; /* Hidden by default */
    position: fixed;
    top: 80px;  /* Adjust as needed */
    right: 20px; /* Adjust position */
    background-color: #535353;
    color: white;
    width: 350px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9;
    list-style: none; /* Prevent any list item styles */
    height: 85%;
    display: flex;
    overflow-y: hidden;
}

#cartItems {
    flex-grow: 1; /* Allow the cart items to take available space */
    margin-bottom: 10px; /* Add some space between the items and the button */
    overflow-y: auto; /* Allow scrolling for the cart items */
    max-height: calc(100% - 40px);
}

.cart-dropdown ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.cart-dropdown li {
    margin: 10px 0;
}

.clearCart {
    position: absolute; /* Position the button at the bottom */
    bottom: 50px; /* 10px from the bottom */
    left: 10px; /* 10px from the right */
    background-color: #007bff; /* Button color */
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
    width: 100px;
}

.showCart {
    position: absolute; /* Position the button at the bottom */
    bottom: 10px; /* 10px from the bottom */
    left: 10px; /* 10px from the right */
    background-color: #007bff; /* Button color */
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
    width: 100px;
}

.cart-dropdown button:hover {
    background-color: #0056b3; /* Darker color on hover */
}

.remove-item {
    color: #0065d1;
    font-weight: bold;
    cursor: pointer;
    margin-left: 10px;
}

.remove-item:hover {
    color: #ff1a1a;
}

#totalPrice {
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    bottom: 35px;
    right: 30px;
    color: rgb(255, 255, 255);
}

/* Filter Container (container3) */
.filter-container {
    display: flex;
    flex-direction: column;
    width: 15%; /* Set the width of the filter container */
    min-width: 140px;
    padding: 20px;
    border-right: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.content-wrapper {
    display: flex;
    justify-content: center; /* Centers items horizontally */
    align-items: center; /* Centers items vertically */
    gap: 15px;
}

/* Product List Container */
.product-list {
    width: 70%; /* Set the width of the product list container */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

/* Individual Product Styling */
.product {
    position: relative;
    width: 100%;
    max-width: 299px;
    max-height: 560px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product:hover {
    transform: translateY(-5px); /* Lift effect */
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}
.product h3 {
    margin-bottom: 10px;
    color: #ce0000;
}
.product p {
    margin: 5px 0;
    color: #ce0000;
}
.product .price {
    font-weight: bold;
    font-size: 16px;
}



/*----------------------------------------------------menu-------------------------------------------------*/

.menu-icon{
    position: absolute;
    width: 40px;  /* Set the size of the cart icon */
    height: 40px; /* Same as width to keep it a square */
    right: 10px;
    cursor: pointer; /* Show a pointer cursor when hovering over the icon */
    background-color: #f8f8f8; /* Background color for the icon */
    padding: 8px; /* Add some padding around the icon */
    border-radius: 50%; /* Make the icon round */
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2); /* Add a shadow effect */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover effects */
    display: none; /* Hide by default */
}

.menu-icon:hover {
    background-color: #007bff; /* Change background color on hover */
    transform: scale(1.1); /* Slightly enlarge the icon on hover */
}

.menu-dropdown {
    margin-top: 35px;
    display: none; /* Hidden by default */
    position: fixed;
    top: 80px;  /* Adjust as needed */
    right: 50px; /* Adjust position */
    background-color: #535353;
    color: white;
    width: 200px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9;
    list-style: none; /* Prevent any list item styles */
    height: 250ps;
    display: flex;
    overflow-y: hidden;
}

.menu-dropdown li{
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-dropdown :hover{
    border-radius: 8px;
    background-color: #007bff; /* Change background color on hover */
    transform: scale(1.1); /* Slightly enlarge the icon on hover */
}

.menu-dropdown a{
    text-decoration: none;
    color: white;
    font-size: 18px;
}

/*----------------------------------------------------product-page-----------------------------------------*/

/* Style the product-details section */
.product-details {
    margin-top: 20px;
    display: flex;
    justify-content: center; /* Horizontally center the content */
    align-items: center; /* Vertically center the content */
    flex-direction: row; /* Stack the content vertically */
    position: relative; /* This makes it the reference for absolute positioning */
    padding: 15px; /* Optional: Add padding around the content */
    width: 100%;
    gap: 20px;
}

/* Style the product image */
.product-Image {
    max-width: 100%; /* Ensure it doesn't overflow */
    height: auto;
    margin-top: 20px; /* Reduced margin from the top */
}

/* Style for the product name */
.product-Name {
    font-size: 24px;
    font-weight: bold;
    color: #ce0000; /* Text color */                 
}

/* Style for the product price */
.product-Price {
    font-size: 20px;
    color: #ce0000; /* Text color */
}


/* Add to Cart button */
.addProduct-ToCart {
    position: absolute;
    right: 20px;
    bottom: 20px; /* Adjust the position for better alignment */
    padding: 10px 15px;
    background-color: #28a745; /* Green color for the button */
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.addProduct-ToCart:hover {
    background-color: #218838; /* Darker green on hover */
}

/* Cart icon */
.cart-icon-prod {
    width: 40px; /* Icon size */
    height: 40px; /* Maintain the same height for the icon */
    cursor: pointer;
    background-color: #e9d9d9;
    padding: 6px;
    border-radius: 50%;
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease;
}

.cart-icon-prod:hover {
    background-color: #007bff; /* Highlight color on hover */
    color: white;
}

/* Image styling */
.product-img {
    width: 100%; /* Set the width of the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Rounded corners */
    margin-bottom: 10px; /* Space below the image */
    object-fit: cover; /* Adjust how the image fits in its container */
}

/* Container for product image and text */
.productImgCont {
    display: flex;
    justify-content: center;
}

/* Text container under the image */
.productText {
    display: flex;
    justify-content: center; /* Vertically center the content */
    align-items: center; /* Horizontally center the content */
    padding: 0 20px; /* Padding for text */
    gap: 15px; /* Space between the items */
    width: 100%; /* Ensure the container takes up the full width */
}

/* Under-image section for product details */
.under-img {
    display: flex;
    justify-content: center; /* Horizontally center the cart icon */
    align-items: center; /* Vertically align the icon in the center */
}

.productSide{
    border: 1px solid #000000;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px; /* Optional: Adds some spacing inside the border */
}

.productText {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.size-quantity {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: Arial, sans-serif;
    align-items: flex-start;
}

.underSize{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 50px;
    margin-left: 30px;
}

.sizeOpt {
    display: flex;
    align-items: center;
    gap: 10px;
}

.size-box {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f5f5f5;
    cursor: pointer;
    font-size: 14px;
}

.size-box.selected {
    border: 2px solid black;
    background-color: white;
}

.size-guide {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    cursor: pointer;
}

.guide-icon {
    width: 16px;
    height: 16px;
}

.quantityOpt {
    display: flex;
    align-items: center;
    gap: 5px;
}

.quantity-btn {
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f5f5f5;
    cursor: pointer;
}

.quantity-input {
    width: 40px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.productDesc{
    background-color: white; /* Unified white background */
    padding: 20px;
    border: 1px solid #ddd; /* Light border for structure */
    border-radius: 5px;
    margin-left: 100px;
    margin-right: 100px;
    height: 200px;
}

.mini-navbar{
    border-bottom: 2px solid #ddd; /* Light grey underline */
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

}

.tab {
    cursor: pointer;
    text-decoration: none;
    color: black;
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 5px;
  }

  .tab.active {
    border-bottom: 2px solid black;
  }

  .tab:hover {
    text-decoration: underline;
  }

  .tab-content {
    position: relative;
    background-color: white;
    display: none;
    padding: 16px;
    border-radius: 0 5px 5px 5px;
    margin-top: -1px;
  }

  .tab-content.active {
    display: block;
  }

  .prdEltaCont{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
  }

  .prdElta{
    border: 2px solid #ddd; /* Light border */
    padding: 10px;
    border-radius: 5px;
    background-color: white;
    width: 150px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .prdElta img {
    max-width: 100px; 
    height: auto;
} 

  .payCont{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }

  /* Style for each payment box */
  .prdCash {
      border: 2px solid #ddd; /* Light border */
      padding: 10px;
      border-radius: 5px;
      text-align: center;
      background-color: white;
      width: 150px;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 51px;
      width: 150px;
  }  
  .prdPaypal {
      border: 2px solid #ddd; /* Light border */
      padding: 10px;
      border-radius: 5px;
      text-align: center;
      background-color: white;
      width: 150px;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 51px;
      width: 150px;
  }
  
  /* Make images fit inside the payment box */
  .prdPaypal img {
      max-width: 100px; 
      height: auto;
  }  

/*-----------------------------------------------------------cart-------------------------------*/

.cart-icon{
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px; /* Slightly larger for better visibility */
    cursor: pointer;
    background-color: #f8f8f8;
    padding: 6px;
    border-radius: 50%;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease;
}
.cart-icon:hover {
    background-color: #007bff; /* Highlight color on hover */
    color: white;
}

/*------------------------------------------------------------------Categories------------------------------------------------------*/
/* Centering the categories container and buttons */
.categories {
    display: flex;
    justify-content: center; /* Centers items horizontally */
    align-items: center;     /* Centers items vertically */
    gap: 15px;               /* Space between buttons */
    margin: 20px 0;          /* Optional: Adds vertical spacing around the buttons */
}

/* Optional: Styling for individual buttons */
.categories button {
    padding: 10px 20px;      /* Adds padding for better appearance */
    font-size: 16px;         /* Adjust font size */
    cursor: pointer;         /* Changes cursor on hover */
    background-color: #f2f2f2; /* Light background for buttons */
    border: 1px solid #ccc;  /* Adds a border to the button */
    border-radius: 5px;      /* Optional: Rounds the button corners */
}

.categories button:hover {
    background-color: #e0e0e0; /* Slightly darker background on hover */
}

.product-Cat { 
    display: flex;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));     /* 4 products per row (adjust as needed) */
    gap: 20px; 
    padding: 20px;
    width: 100%; 
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;            /* Optional: light background for contrast */
}


.product-Cat .product {
    background-color: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-Cat .product:hover {
    transform: scale(1.02);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

/*-----------------------------------------------------------show-cart----------------------------------------------------------------*/

.showCartCont {
    display: flex;
    flex-direction: column; /* Stack the items vertically */
}

.showCartCont h3{
    align-self: center;  /* Centers the <h3> horizontally within the container */
    margin: 0; /* Optional: Remove default margin */
    margin-bottom: 20px;
}

.showCartList {
    display: flex;
    align-items: flex-start;  /* Start from the left, so we can adjust the offset */  
    flex-direction: column; /* Arrange items vertically */
    position: relative; /* Needed for the transformation */
    list-style-type: none; /* Remove default list markers */
    margin-left: 40%;
    gap: 5px; /* Add spacing between list items */
}

.cart-item {
    display: flex;
    align-items: flex-start; /* Align items starting from top (for vertical centering of img) */
    justify-content: center; /* Center all content horizontally */
    gap: 20px; /* Add some space between image, details, and button */
    margin-bottom: 10px; /* Add spacing between list items */
    width: 100%; /* Optional: Make sure it takes up full container width */
}

.cart-item-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px; /* Optional: round the edges */
}

.itmName {
    display: flex;
    flex-direction: column; /* Stack name and price vertically */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center the name and price horizontally */
}

.remove-btn {
    background-color: #ff4d4d;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px; /* Optional: round the button */
}

.remove-btn:hover {
    background-color: #ff1a1a; /* Optional: change hover effect */
}

.checkOut{
    position: absolute; /* Position the button at the bottom */
    bottom: 20px; /* 10px from the bottom */
    right: 20px; /* 10px from the right */
    background-color: #007bff; /* Button color */
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
    width: 100px;
} 


.checkOut:hover{
    background-color: #0056b3;
}

/*------------------------------------------------------------------checkout-----------------------------------------------------------*/

.main2 {
    background: linear-gradient(to bottom, #ffffff, #333333);
    transition: background 0.5s ease; /* Smooth transition for background change */
    width: 100%;
    max-width: 600px;
    margin-top: 220px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
}

/* Container to hold h2 and h3 side by side */
.billing-header {
    display: flex;
    justify-content: space-between; /* Optional: To space out the two elements evenly */
    align-items: center; /* Vertically align the items */
}

/* Styling the h2 element */
.billing-header h2 {
    margin: 0; /* Optional: Remove default margins */
    padding-right: 10px; /* Optional: Adjust space between h2 and h3 */
}

/* Styling the h3 element */
.billing-header h3 {
    margin: 0; /* Optional: Remove default margins */
    padding-left: 10px; /* Optional: Adjust space between h2 and h3 */
}

.form2{
    display: flex;
    flex-direction: column;
}

.sendExp{
    position: fixed; /* You can try absolute if fixed isn't working */
    width: 308px;
    top: 250px;
    right: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Adds spacing between image and text */
    background: rgba(255, 255, 255, 0.9); /* Light background to ensure visibility */
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Adds a shadow for better visibility */
}

.elta{
    position: fixed; /* You can try absolute if fixed isn't working */
    top: 300px;
    width: 308px;
    right: 180px;
    display: flex;
    align-items: center;
    gap: 10px; /* Adds spacing between image and text */
    background: rgba(255, 255, 255, 0.9); /* Light background to ensure visibility */
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Adds a shadow for better visibility */
}

.paypal{
    position: fixed; /* You can try absolute if fixed isn't working */
    top: 380px;
    width: 308px;
    right: 180px;
    display: flex;
    align-items: center;
    gap: 10px; /* Adds spacing between image and text */
    background: rgba(255, 255, 255, 0.9); /* Light background to ensure visibility */
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Adds a shadow for better visibility */
}

.elta img {
    width: 80px; /* Adjust image size */
    height: auto;
    display: block; /* Ensures image is visible */
}
.paypal img {
    width: 100px; /* Adjust image size */
    height: auto;
    display: block; /* Ensures image is visible */
    margin-left: 94px;
    margin-right: 94px;
}

.sendInfo h2 {
    font-size: 18px;
    color: #333; /* Ensure text is visible */
    margin: 0;
}



/*--------------------------------------------------------------------modal-------------------------------------------*/

.hidden{
    display: none;
}

.modal-content{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.opt{
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.optBtn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.optBtn button {
    width: 80px;
    background-color: #007bff; /* Button color */
    color: white;
    border-radius: 5px;
}

.optBtn :hover{
    background-color: #0056b3;
}


.modal-content h2{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.modal-content input{
    max-width: 50px;
}

label {
    margin-bottom: 8px;
    font-weight: bold;
}

.form2 input, textarea {
    margin-bottom: 12px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.sub-check{
    padding: 10px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.blur {
    filter: blur(7px); /* Adjust blur intensity */
    transition: filter 0.1s ease-in-out; /* Smooth effect */
}

/*------------------------------------------------------------------Footer-----------------------------------------------------------*/

.footer {
    display: flex;
    max-height: 150px;
    min-height: 50px;
    background-color: #000000; /* Dark background for the footer */
    color: #fff; /* White text color */
    justify-content:space-evenly; /* Space between logo and links */
    align-items: center; /* Vertically center the items */
    padding: 20px; /* Add padding around the footer */
}

.footerLogo img {
    height: 50px; /* Set a fixed size for the logo */
    width: 50px; /* Set width equal to height to make it square */
    border-radius: 50%; /* Makes the image round */
    object-fit: cover; /* Ensures the image maintains its aspect ratio while fitting the container */
}

.footerLink {
    color: #fff; /* Set link color to white */
    text-decoration: none; /* Remove underline from links */
    margin: 0 10px; /* Add horizontal space between the links */
    font-size: 14px; /* Set font size for links */
}

.footerLink:hover {
    color: #adcae2; /* Change color on hover */
    text-decoration: underline; /* Add underline on hover */
}

/*------------------------------------------------------------------Mobile > 1600px-----------------------------------------------------------*/
@media (max-width: 1600px) and (min-width: 1000px){

    .sendInfo {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px; /* Add space between items */
    }
    

    .sendExp{
        position: relative;
        top: auto;
        right: calc(0% - 125px);
    }

    .elta{
        position: relative;
        top: auto;
        right: calc(0% - 125px);
    }

    .paypal{
        position: relative;
        top: auto;
        right: calc(0% - 125px);
    }

    .productSide{
        border: 1px solid #000000;
        border-radius: 8px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
        padding: 10px; /* Optional: Adds some spacing inside the border */
    }
    
}


/*------------------------------------------------------------------Mobile > 1000px-----------------------------------------------------------*/
@media (max-width: 1000px) and (min-width: 500px){

    .container2 {
        width: 100%;
        padding: 10px 20px;
        margin-bottom: 30px;
        margin-left: 5px;
    }

    .logo img{
        display: flex;
        align-items: center;
        max-width: 80px;
        max-height: 80px;
        margin-left: 0px;
    }

    .social {
        position: fixed;
        margin-left: 95px;
        margin-top: 20px;
        display: flex;
        flex-direction: column; /* Stack vertically */
        gap: 0;
        z-index: 100; /* Ensure the icons are on top of other content */
    }

    .social a {
        display: inline-block; /* Keep the link wrapped around the image */
        width: 30px; /* Adjust the size of the images */
        height: 30px; /* Adjust the size of the images */
    }
    
    .social img {
        width: 100%; /* Fill the anchor element */
        height: 100%; /* Fill the anchor element */
        display: block; /* Prevents unwanted spacing below images */
    }

    #NavItems {
    display: none;
    }

    /* Each nav item should be spaced horizontally */
    #NavItems li {
        margin-right: 10px; /* Space between the items */
    }

    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 10px;
    }

    .logo {
        display: flex;
        align-items: center;
        max-width: 100px;
        max-height: 100px;
    }
    
    /* Centered search bar */
    .search-bar {
        position: absolute;
        max-width: 250px;
        top: 40px;
        
    }

    .search-bar input[type="text"] {
        padding: 8px 10px;
        border: 1px solid #ccc;
        border-radius: 5px 0 0 5px;
        outline: none;
        width: 100%;
        font-size: 11px;
    }

    .search-bar button {
        background-color: #333;
        color: #fff;
        border: none;
        padding: 8px 12px;
        border-radius: 0 5px 5px 0;
        cursor: pointer;
        font-size: 12px;
    }

    .cart-icon-main {
        position: absolute;
        top: 38px;
        right: 60px;
        width: 33px;  /* Set the size of the cart icon */
        height: 33px; /* Same as width to keep it a square */
        cursor: pointer; /* Show a pointer cursor when hovering over the icon */
        background-color: #f8f8f8; /* Background color for the icon */
        padding: 8px; /* Add some padding around the icon */
        border-radius: 50%; /* Make the icon round */
        box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2); /* Add a shadow effect */
        transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover effects */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 0px;
    }

    .menu-icon {
        display: block;
        position: fixed;
        top: 38px;
        width: 33px;  /* Set the size of the cart icon */
        height: 33px; /* Same as width to keep it a square */
        cursor: pointer; /* Show a pointer cursor when hovering over the icon */
        background-color: #f8f8f8; /* Background color for the icon */
        padding: 8px; /* Add some padding around the icon */
        border-radius: 50%; /* Make the icon round */
        box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2); /* Add a shadow effect */
        transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover effects */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 0px;
    }

    .cart-dropdown {
        margin-top: 30px;
        display: none; /* Hidden by default */
        position: fixed;
        top: 60px;  /* Adjust as needed */
        right: 20px; /* Adjust position */
        background-color: #535353;
        color: white;
        width: 350px;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        z-index: 9;
        list-style: none; /* Prevent any list item styles */
        height: 85%;
        display: flex;
        overflow-y: hidden;
    }

    .menu-dropdown {
        margin-top: 30px;
        display: none; /* Hidden by default */
        position: fixed;
        top: 60px;  /* Adjust as needed */
        right: 20px; /* Adjust position */
        background-color: #535353;
        color: white;
        width: 200px;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        z-index: 9;
        list-style: none; /* Prevent any list item styles */
        height: 150px;
        display: flex;
        overflow-y: hidden;
    }

    #cartItems {
        flex-grow: 1; /* Allow the cart items to take available space */
        margin-bottom: 10px; /* Add some space between the items and the button */
        overflow-y: auto; /* Allow scrolling for the cart items */
        max-height: calc(100% - 65px);
    }

    #totalPrice {
        font-size: 16px;
        font-weight: bold;
        position: absolute;
        bottom: 35px;
        right: 40px;
        color: rgb(255, 255, 255);
    }

    .offer {
        position: absolute;
        font-size: 12px;
        top: 80px;
        white-space: nowrap; /* Prevent text wrapping */
        overflow: hidden; /* Hide overflowing content */
        text-overflow: ellipsis; /* Add ellipsis if text overflows */
    }

    .content-wrapper {
        display: flex;
        justify-content: center; /* Centers items horizontally */
        align-items: center; /* Centers items vertically */
        gap: 15px;
    }
    

    .product-list {
        width: 83%; /* Set the width of the product list container */
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        padding-right: 10px;
    }

    .product {
        position: relative;
        width: 100%; /* Adjust product width */
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .main-Prd{
        margin-top: 120px;
        background: linear-gradient(to bottom, #ffffff, #000000);
        transition: background 0.5s ease;
    }

    .product-details{
        margin-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        position: relative;
        padding: 15px;
        width: 100%;
    }

    .main2{
        background: linear-gradient(to bottom, #ffffff, #333333);
        transition: background 0.5s ease;
        width: 100%;
        width: 400px;
        margin-top: 180px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
        padding: 20px;
        border: 1px solid #ddd;
        border-radius: 10px;
        background-color: #f9f9f9;
    }

    .sendInfo {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px; /* Add space between items */
    }

    .sendInfo {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px; /* Add space between items */
    }
    

    .sendExp{
        position: relative;
        top: auto;
        right: calc(0% - 26px);
    }

    .elta{
        position: relative;
        top: auto;
        right: calc(0% - 26px);
    }

    .paypal{
        position: relative;
        top: auto;
        right: calc(0% - 26px);
    }

    .productSide{
        border: 1px solid #000000;
        border-radius: 8px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
        padding: 10px; /* Optional: Adds some spacing inside the border */
    }

    .productImgCont {
        display: flex;
        justify-content: center;
    }
    

}

@media (max-width: 750px) and (min-width: 500px){

    .container2 {
        width: 100%;
        padding: 10px 20px;
        margin-bottom: 30px;
        margin-left: 5px;
    }

    .logo img{
        display: flex;
        align-items: center;
        max-width: 80px;
        max-height: 80px;
        margin-left: 0px;
    }

    .social {
        position: fixed;
        margin-left: 95px;
        margin-top: 20px;
        display: flex;
        flex-direction: column; /* Stack vertically */
        gap: 0;
        z-index: 100; /* Ensure the icons are on top of other content */
    }

    .social a {
        display: inline-block; /* Keep the link wrapped around the image */
        width: 30px; /* Adjust the size of the images */
        height: 30px; /* Adjust the size of the images */
    }
    
    .social img {
        width: 100%; /* Fill the anchor element */
        height: 100%; /* Fill the anchor element */
        display: block; /* Prevents unwanted spacing below images */
    }

    #NavItems {
    display: none;
    }

    /* Each nav item should be spaced horizontally */
    #NavItems li {
        margin-right: 10px; /* Space between the items */
    }

    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 10px;
    }

    .logo {
        display: flex;
        align-items: center;
        max-width: 100px;
        max-height: 100px;
    }
    
    /* Centered search bar */
    .search-bar {
        position: absolute;
        max-width: 250px;
        top: 40px;
        
    }

    .search-bar input[type="text"] {
        padding: 8px 10px;
        border: 1px solid #ccc;
        border-radius: 5px 0 0 5px;
        outline: none;
        width: 100%;
        font-size: 11px;
    }

    .search-bar button {
        background-color: #333;
        color: #fff;
        border: none;
        padding: 8px 12px;
        border-radius: 0 5px 5px 0;
        cursor: pointer;
        font-size: 12px;
    }

    .cart-icon-main {
        position: absolute;
        top: 38px;
        right: 60px;
        width: 33px;  /* Set the size of the cart icon */
        height: 33px; /* Same as width to keep it a square */
        cursor: pointer; /* Show a pointer cursor when hovering over the icon */
        background-color: #f8f8f8; /* Background color for the icon */
        padding: 8px; /* Add some padding around the icon */
        border-radius: 50%; /* Make the icon round */
        box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2); /* Add a shadow effect */
        transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover effects */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 0px;
    }

    .menu-icon {
        display: block;
        position: fixed;
        top: 38px;
        width: 33px;  /* Set the size of the cart icon */
        height: 33px; /* Same as width to keep it a square */
        cursor: pointer; /* Show a pointer cursor when hovering over the icon */
        background-color: #f8f8f8; /* Background color for the icon */
        padding: 8px; /* Add some padding around the icon */
        border-radius: 50%; /* Make the icon round */
        box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2); /* Add a shadow effect */
        transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover effects */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 0px;
    }

    .cart-dropdown {
        margin-top: 30px;
        display: none; /* Hidden by default */
        position: fixed;
        top: 60px;  /* Adjust as needed */
        right: 20px; /* Adjust position */
        background-color: #535353;
        color: white;
        width: 350px;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        z-index: 9;
        list-style: none; /* Prevent any list item styles */
        height: 85%;
        display: flex;
        overflow-y: hidden;
    }

    .menu-dropdown {
        margin-top: 30px;
        display: none; /* Hidden by default */
        position: fixed;
        top: 60px;  /* Adjust as needed */
        right: 20px; /* Adjust position */
        background-color: #535353;
        color: white;
        width: 200px;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        z-index: 9;
        list-style: none; /* Prevent any list item styles */
        height: 150px;
        display: flex;
        overflow-y: hidden;
    }

    #cartItems {
        flex-grow: 1; /* Allow the cart items to take available space */
        margin-bottom: 10px; /* Add some space between the items and the button */
        overflow-y: auto; /* Allow scrolling for the cart items */
        max-height: calc(100% - 65px);
    }

    #totalPrice {
        font-size: 16px;
        font-weight: bold;
        position: absolute;
        bottom: 35px;
        right: 40px;
        color: rgb(255, 255, 255);
    }

    .offer {
        position: absolute;
        font-size: 12px;
        top: 80px;
        white-space: nowrap; /* Prevent text wrapping */
        overflow: hidden; /* Hide overflowing content */
        text-overflow: ellipsis; /* Add ellipsis if text overflows */
    }

    .content-wrapper {
        display: flex;
        justify-content: center; /* Centers items horizontally */
        align-items: center; /* Centers items vertically */
        gap: 15px;
    }
    

    .product-list {
        width: 83%; /* Set the width of the product list container */
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        padding-right: 10px;
    }

    .product {
        position: relative;
        width: 100%; /* Adjust product width */
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .main-Prd{
        margin-top: 120px;
        background: linear-gradient(to bottom, #ffffff, #000000);
        transition: background 0.5s ease;
    }

    .product-details{
        margin-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        position: relative;
        padding: 15px;
        width: 100%;
    }

    .main2{
        background: linear-gradient(to bottom, #ffffff, #333333);
        transition: background 0.5s ease;
        width: 100%;
        width: 400px;
        margin-top: 180px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
        padding: 20px;
        border: 1px solid #ddd;
        border-radius: 10px;
        background-color: #f9f9f9;
    }

    .sendInfo {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px; /* Add space between items */
    }

    .sendInfo {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px; /* Add space between items */
    }
    

    .sendExp{
        position: relative;
        top: auto;
        right: calc(0% - 26px);
    }

    .elta{
        position: relative;
        top: auto;
        right: calc(0% - 26px);
    }

    .paypal{
        position: relative;
        top: auto;
        right: calc(0% - 26px);
    }

    .productSide{
        max-width: 40vh;
        border: 1px solid #000000;
        border-radius: 8px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
        padding: 10px; /* Optional: Adds some spacing inside the border */
        margin-bottom: 30px;
    }

    .size-box {
        padding: 10px 10px;
        border: 1px solid #ccc;
        border-radius: 8px;
        background-color: #f5f5f5;
        cursor: pointer;
        font-size: 10px;
    }
    
    .quantity-btn {
        padding: 5px 8px;
        border: 1px solid #ccc;
        border-radius: 4px;
        background-color: #f5f5f5;
        cursor: pointer;
    }

    .quantity-input {
        width: 25px;
        text-align: center;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .cart-icon-prod {
        width: 35px;
        height: 35px;
        cursor: pointer;
        background-color: #e9d9d9;
        padding: 6px;
        border-radius: 50%;
        box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease;
    }

    .underSize {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        gap: 40px;
        margin-left: 10px;
    }

    .product-Name {
        font-size: 20px;
        font-weight: bold;
        color: #ce0000;
    }

    .productText{
        gap: 5px;
    }

    .productImgCont {
        display: flex;
        justify-content: center;
    }

}

@media (max-width: 600px) and (min-width: 500px){

    .container2 {
        width: 100%;
        padding: 10px 20px;
        margin-bottom: 30px;
        margin-left: 5px;
    }

    .logo img{
        display: flex;
        align-items: center;
        max-width: 80px;
        max-height: 80px;
        margin-left: 0px;
    }

    .social {
        position: fixed;
        margin-left: 95px;
        margin-top: 3px;
        display: flex;
        flex-direction: column; /* Stack vertically */
        gap: 0;
        z-index: 100; /* Ensure the icons are on top of other content */
    }

    .social a {
        display: inline-block; /* Keep the link wrapped around the image */
        width: 30px; /* Adjust the size of the images */
        height: 30px; /* Adjust the size of the images */
    }
    
    .social img {
        width: 100%; /* Fill the anchor element */
        height: 100%; /* Fill the anchor element */
        display: block; /* Prevents unwanted spacing below images */
    }

    #NavItems {
    display: none;
    }

    /* Each nav item should be spaced horizontally */
    #NavItems li {
        margin-right: 10px; /* Space between the items */
    }

    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 10px;
    }

    .logo {
        display: flex;
        align-items: center;
        max-width: 100px;
        max-height: 100px;
    }
    
    /* Centered search bar */
    .search-bar {
        position: absolute;
        max-width: 160px;
        top: 40px;
        
    }

    .search-bar input[type="text"] {
        padding: 8px 10px;
        border: 1px solid #ccc;
        border-radius: 5px 0 0 5px;
        outline: none;
        width: 100%;
        font-size: 11px;
    }

    .search-bar button {
        background-color: #333;
        color: #fff;
        border: none;
        padding: 8px 12px;
        border-radius: 0 5px 5px 0;
        cursor: pointer;
        font-size: 12px;
    }

    .cart-icon-main {
        position: absolute;
        top: 38px;
        right: 60px;
        width: 33px;  /* Set the size of the cart icon */
        height: 33px; /* Same as width to keep it a square */
        cursor: pointer; /* Show a pointer cursor when hovering over the icon */
        background-color: #f8f8f8; /* Background color for the icon */
        padding: 8px; /* Add some padding around the icon */
        border-radius: 50%; /* Make the icon round */
        box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2); /* Add a shadow effect */
        transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover effects */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 0px;
    }

    .menu-icon {
        display: block;
        position: fixed;
        top: 38px;
        width: 33px;  /* Set the size of the cart icon */
        height: 33px; /* Same as width to keep it a square */
        cursor: pointer; /* Show a pointer cursor when hovering over the icon */
        background-color: #f8f8f8; /* Background color for the icon */
        padding: 8px; /* Add some padding around the icon */
        border-radius: 50%; /* Make the icon round */
        box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2); /* Add a shadow effect */
        transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover effects */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 0px;
    }

    .cart-dropdown {
        margin-top: 30px;
        display: none; /* Hidden by default */
        position: fixed;
        top: 60px;  /* Adjust as needed */
        right: 20px; /* Adjust position */
        background-color: #535353;
        color: white;
        width: 350px;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        z-index: 9;
        list-style: none; /* Prevent any list item styles */
        height: 85%;
        display: flex;
        overflow-y: hidden;
    }

    .menu-dropdown {
        margin-top: 30px;
        display: none; /* Hidden by default */
        position: fixed;
        top: 60px;  /* Adjust as needed */
        right: 20px; /* Adjust position */
        background-color: #535353;
        color: white;
        width: 200px;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        z-index: 9;
        list-style: none; /* Prevent any list item styles */
        height: 150px;
        display: flex;
        overflow-y: hidden;
    }

    #cartItems {
        flex-grow: 1; /* Allow the cart items to take available space */
        margin-bottom: 10px; /* Add some space between the items and the button */
        overflow-y: auto; /* Allow scrolling for the cart items */
        max-height: calc(100% - 65px);
    }

    #totalPrice {
        font-size: 16px;
        font-weight: bold;
        position: absolute;
        bottom: 35px;
        right: 40px;
        color: rgb(255, 255, 255);
    }

    .offer {
        position: absolute;
        font-size: 12px;
        top: 80px;
        white-space: nowrap; /* Prevent text wrapping */
        overflow: hidden; /* Hide overflowing content */
        text-overflow: ellipsis; /* Add ellipsis if text overflows */
    }

    .content-wrapper {
        display: flex;
        justify-content: center; /* Centers items horizontally */
        align-items: center; /* Centers items vertically */
        gap: 15px;
    }
    

    .product-list {
        width: 83%; /* Set the width of the product list container */
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        padding-right: 10px;
    }

    .product {
        position: relative;
        width: 100%; /* Adjust product width */
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .main-Prd{
        margin-top: 120px;
        background: linear-gradient(to bottom, #ffffff, #000000);
        transition: background 0.5s ease;
    }

    .product-details{
        margin-top: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: relative;
        padding: 15px;
        width: 100%;
    }

    .main2{
        background: linear-gradient(to bottom, #ffffff, #333333);
        transition: background 0.5s ease;
        width: 100%;
        width: 400px;
        margin-top: 180px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
        padding: 20px;
        border: 1px solid #ddd;
        border-radius: 10px;
        background-color: #f9f9f9;
    }

    .sendInfo {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px; /* Add space between items */
    }

    .sendInfo {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px; /* Add space between items */
    }
    

    .sendExp{
        position: relative;
        top: auto;
        right: calc(0% - 26px);
    }

    .elta{
        position: relative;
        top: auto;
        right: calc(0% - 26px);
    }

    .paypal{
        position: relative;
        top: auto;
        right: calc(0% - 26px);
    }

    .productSide{
        max-width: 40vh;
        border: 1px solid #000000;
        border-radius: 8px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
        padding: 10px; /* Optional: Adds some spacing inside the border */
        margin-bottom: 30px;
    }

    .size-box {
        padding: 10px 10px;
        border: 1px solid #ccc;
        border-radius: 8px;
        background-color: #f5f5f5;
        cursor: pointer;
        font-size: 10px;
    }
    
    .quantity-btn {
        padding: 5px 8px;
        border: 1px solid #ccc;
        border-radius: 4px;
        background-color: #f5f5f5;
        cursor: pointer;
    }

    .quantity-input {
        width: 25px;
        text-align: center;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .cart-icon-prod {
        width: 35px;
        height: 35px;
        cursor: pointer;
        background-color: #e9d9d9;
        padding: 6px;
        border-radius: 50%;
        box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease;
    }

    .underSize {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        gap: 40px;
        margin-left: 10px;
    }

    .product-Name {
        font-size: 20px;
        font-weight: bold;
        color: #ce0000;
    }

    .productText{
        gap: 5px;
    }

}

/*------------------------------------------------------------------Mobile > 500px-----------------------------------------------------------*/
@media (max-width: 500px) and (min-width: 340px){

    .container2 {
        width: 100%;
        padding: 10px 20px;
        margin-bottom: 30px;
        margin-left: 5px;
    }

    .logo img{
        display: flex;
        align-items: center;
        max-width: 50px;
        max-height: 50px;
        margin-left: 0px;
        margin-bottom: 20px;
    }
    
    #NavItems {
    display: none;
    }

    /* Each nav item should be spaced horizontally */
    #NavItems li {
        margin-right: 10px; /* Space between the items */
    }

    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 10px;
    }

    .logo {
        display: flex;
        align-items: center;
        max-width: 100px;
        max-height: 100px;
    }

    .social {
        position: fixed;
        margin-left: 47px;
        margin-top: -5px;
        display: flex;
        flex-direction: column; /* Stack vertically */
        gap: 0;
        z-index: 100; /* Ensure the icons are on top of other content */
    }

    .social a {
        display: inline-block; /* Keep the link wrapped around the image */
        width: 25px; /* Adjust the size of the images */
        height: 25px; /* Adjust the size of the images */
    }
    
    .social img {
        width: 100%; /* Fill the anchor element */
        height: 100%; /* Fill the anchor element */
        display: block; /* Prevents unwanted spacing below images */
    }
    
    /* Centered search bar */
    .search-bar {
        position: absolute;
        max-width: 120px;
        top: 20px;
        
    }

    .search-bar input[type="text"] {
        padding: 8px 10px;
        border: 1px solid #ccc;
        border-radius: 5px 0 0 5px;
        outline: none;
        width: 100%;
        font-size: 11px;
    }

    .search-bar button {
        background-color: #333;
        color: #fff;
        border: none;
        padding: 8px 12px;
        border-radius: 0 5px 5px 0;
        cursor: pointer;
        font-size: 12px;
    }

    .cart-icon-main {
        position: absolute;
        top: 18px;
        right: 50px;
        width: 33px;  /* Set the size of the cart icon */
        height: 33px; /* Same as width to keep it a square */
        cursor: pointer; /* Show a pointer cursor when hovering over the icon */
        background-color: #f8f8f8; /* Background color for the icon */
        padding: 8px; /* Add some padding around the icon */
        border-radius: 50%; /* Make the icon round */
        box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2); /* Add a shadow effect */
        transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover effects */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 0px;
    }

    .menu-icon {
        display: block;
        position: fixed;
        top: 18px;
        width: 33px;  /* Set the size of the cart icon */
        height: 33px; /* Same as width to keep it a square */
        cursor: pointer; /* Show a pointer cursor when hovering over the icon */
        background-color: #f8f8f8; /* Background color for the icon */
        padding: 8px; /* Add some padding around the icon */
        border-radius: 50%; /* Make the icon round */
        box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2); /* Add a shadow effect */
        transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover effects */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 0px;
    }

    .cart-dropdown {
        margin-top: 30px;
        display: none; /* Hidden by default */
        position: fixed;
        top: 80px;  /* Adjust as needed */
        right: 20px; /* Adjust position */
        background-color: #535353;
        color: white;
        width: 309px;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        z-index: 9;
        list-style: none; /* Prevent any list item styles */
        height: 500px;
        display: flex;
        overflow-y: hidden;
    }

    .menu-dropdown {
        margin-top: 30px;
        display: none; /* Hidden by default */
        position: fixed;
        top: 80px;  /* Adjust as needed */
        right: 75px; /* Adjust position */
        background-color: #535353;
        color: white;
        width: 200px;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        z-index: 9;
        list-style: none; /* Prevent any list item styles */
        height: 150px;
        display: flex;
        overflow-y: hidden;
    }

    #cartItems {
        flex-grow: 1; /* Allow the cart items to take available space */
        margin-bottom: 10px; /* Add some space between the items and the button */
        overflow-y: auto; /* Allow scrolling for the cart items */
        max-height: calc(100% - 65px);
    }

    #totalPrice {
        font-size: 16px;
        font-weight: bold;
        position: absolute;
        bottom: 35px;
        right: 40px;
        color: rgb(255, 255, 255);
    }

    .showCartList{
        right: 100px;
    }

    .offer {
        position: absolute;
        font-size: 12px;
        top: 72px;
        white-space: nowrap; /* Prevent text wrapping */
        overflow: hidden; /* Hide overflowing content */
        text-overflow: ellipsis; /* Add ellipsis if text overflows */
    }

    .content-wrapper {
        display: flex;
        justify-content: center; /* Centers items horizontally */
        align-items: center; /* Centers items vertically */
        gap: 15px;
    }
    

    .product-list {
        width: 83%; /* Set the width of the product list container */
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); 
        gap: 20px;
        padding-right: 10px;
    }

    .product {
        position: relative;
        width: 100%; /* Adjust product width */
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .main-Prd{
        margin-top: 120px;
        background: linear-gradient(to bottom, #ffffff, #000000);
        transition: background 0.5s ease;
    }

    .product-details{
        margin-top: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: relative;
        padding: 15px;
        width: 100%;
    }

    .main2{
        background: linear-gradient(to bottom, #ffffff, #333333);
        transition: background 0.5s ease;
        width: 100%;
        width: 320px;
        margin-top: 180px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
        padding: 20px;
        border: 1px solid #ddd;
        border-radius: 10px;
        background-color: #f9f9f9;
    }

    .sendInfo {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px; /* Add space between items */
    }
    
    .sendExp{
        position: relative;
        top: auto;
        right: 0%;
        width: 278px;
    }

    .elta{
        position: relative;
        top: auto;
        right: 0%;
        width: 278px;
    }

    .paypal{
        position: relative;
        align-items: center;
        justify-content: center;
        top: auto;
        right: 0%;
        width: 278px;
    }

    .productSide{
        max-width: 40vh;
        border: 1px solid #000000;
        border-radius: 8px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
        padding: 10px; /* Optional: Adds some spacing inside the border */
        margin-bottom: 30px;
    }

    .size-box {
        padding: 10px 10px;
        border: 1px solid #ccc;
        border-radius: 8px;
        background-color: #f5f5f5;
        cursor: pointer;
        font-size: 10px;
    }
    
    .quantity-btn {
        padding: 5px 8px;
        border: 1px solid #ccc;
        border-radius: 4px;
        background-color: #f5f5f5;
        cursor: pointer;
    }

    .quantity-input {
        width: 25px;
        text-align: center;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .cart-icon-prod {
        width: 35px;
        height: 35px;
        cursor: pointer;
        background-color: #e9d9d9;
        padding: 6px;
        border-radius: 50%;
        box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease;
    }

    .underSize {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        gap: 40px;
        margin-left: 10px;
    }

    .product-Name {
        font-size: 20px;
        font-weight: bold;
        color: #ce0000;
    }

    .productText{
        gap: 5px;
    }

    .productDesc {
        background-color: white;
        padding: 20px;
        border: 1px solid #ddd;
        border-radius: 5px;
        margin-left: 33px;
        margin-right: 32px;
        height: 210px;
    }

}