@import url("https://fonts.googleapis.com/css2?family=Muli:wght@400;700&display=swap");

body {
  font-family: "Muli", sans-serif;
  margin: 0;
  padding: 0;
}
h1,
h2 {
  font-weight: 900; /* Extra bold */
}

.custom-border {
  border-radius: 10px 10px 0 0; /* Top corners rounded, bottom corners flat */
  overflow: hidden; /* Ensure the image fits properly inside the border */
  display: block;
  width: 100%; /* Adjust width as per your container */
}

/* Basic Navbar Styles */
.navbar {
  display: flex;
  justify-content: center; /* Centers all content in the navbar */
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #000;
  background-color: #fff; /* Adds a background color */
  position: fixed; /* Fixes the navbar at the top of the screen */
  top: 0; /* Sticks the navbar to the top */
  left: 0; /* Ensures it covers the left edge of the viewport */
  width: 100%; /* Makes sure the navbar spans the full width of the screen */
  z-index: 1000; /* Ensures the navbar is always above other content */
}

/* Add padding to body to avoid content getting hidden under the fixed navbar */
body {
  padding-top: 80px; /* Adjust this based on the height of your navbar */
}

/* Nav Links Container */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  position: relative;
}

/* Navbar items */
.nav-links li {
  margin: 0 20px; /* Spacing between items */
}

.nav-links li.logo {
  margin: 0 40px; /* Extra space for the logo */
}

/* Anchor link styling */
.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

/* Only apply styles to nav links that are NOT the logo */
.nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a:focus {
  border-bottom: 2px solid #000; /* underline effect on hover/focus */
}

/* Disable hover effect for the logo */
.nav-links li.logo a {
  border-bottom: none;
}

/* Hamburger Button Styles */
.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

.logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .logo img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .footer-logo img {
    width: 80px;
    height: 80px;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #fff;
    width: 100%;
    transform: translateX(100%);
    border-top: 1px solid #000;
    opacity: 0; /* Initially hidden */
  }

  .nav-links li {
    margin: 15px 0;
    opacity: 0; /* Hide the links initially */
    transform: translateY(-20px); /* Slide the links up initially */
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }

  .hamburger {
    display: block;
  }

  .nav-links.active {
    transform: translateX(0);
    opacity: 1; /* Show the menu */
  }

  /* Animate links to appear one after the other */
  .nav-links.active li {
    opacity: 1; /* Fade-in effect */
    transform: translateY(0); /* Slide down effect */
  }

  .nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-links.active li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav-links.active li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav-links.active li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .nav-links.active li:nth-child(5) {
    transition-delay: 0.5s;
  }
}

.logo {
  margin: 0 40px;
}


.cart-icon img {
  width: 24px;
  height: 24px;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
  padding: 10px 20px;
}

.shop-button a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.new-arrivals {
  padding: 50px 0;
  text-align: center;
}

.carousel {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
}

.carousel-item {
  flex: none;
  scroll-snap-align: start;
  margin: 0 10px;
}

.arrivals {
  text-align: center;
  padding: 50px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.product-item {
  padding: 20px;
}

/////

.new-arrivals {
  text-align: center;
  padding: 50px 0;
}

.new-arrivals h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.section-description {
  font-size: 16px;
  margin-bottom: 40px;
  color: #333;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Three images side by side */
  gap: 20px; /* Space between images */
  justify-content: center;
  align-items: center;
  max-width: 1200px; /* Adjust according to your layout */
  margin: 0 auto;
}

.grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.grid-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.grid-item:hover img {
  transform: scale(1.05); /* Slight zoom effect on hover */
}

.overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  border-radius: 4px;
  display: none; /* Initially hidden */
}

.grid-item:hover .overlay {
  display: block; /* Show overlay on hover */
}

.shop-link {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

.made-to-order {
  font-size: 14px;
  color: #666;
  margin-top: 40px;
}

.section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background-color: #f5f5f5;
}

.text {
  flex: 1;
  max-width: 40%;
}

.text p {
  font-size: 18px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 20px;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: black;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.image {
  flex: 1;
  max-width: 50%;
}

.image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}



//////
.section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background-color: #f5f5f5;
}

.text {
  flex: 1;
  max-width: 40%;
}

.text p {
  font-size: 18px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 20px;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: black;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.image {
  flex: 1;
  max-width: 50%;
}

.image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}

/////////////////////

.sm-totes {
  text-align: center;
  padding: 50px 0;
  background-color: #fff;
}

.sm-totes h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #333;
  text-align: center;
}

.sm-totes h2 .highlight {
  font-style: italic;
  color: #000;
}

.tote-grid {
  display: flex;
  justify-content: center;
  gap: 30px; /* Space between tote images */
}

.tote-item {
  width: 250px;
  height: 300px;
  overflow: hidden;
}

.tote-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tote-item:hover img {
  transform: scale(1.05); /* Slight zoom effect on hover */
}

.view-more-container {
  margin-top: 40px;
  justify-content: center;
}

.view-more-btn {
  padding: 10px 20px;
  background-color: #333; /* Button background color */
  color: white; /* Button text color */
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px; /* Optional: Rounded corners */
  text-transform: uppercase;
}

.view-more-btn:hover {
  background-color: #333;
}

//////////store//////////////////////////////////

//cart

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #000;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.nav-links li {
  margin: 0 20px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.logo {
  margin: 0 40px;
}

.cart-icon img {
  width: 24px;
  height: 24px;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
  padding: 10px 20px;
  font-size: 30px;
}

.shop-button a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.new-arrivals {
  padding: 50px 0;
  text-align: center;
  padding: 20px;
}

.carousel {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
}

.carousel-item {
  flex: none;
  scroll-snap-align: start;
  margin: 0 10px;
}

.arrivals {
  text-align: center;
  padding: 50px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.product-item {
  padding: 20px;
}

.grid-container .buttons {
  display: inline-block;
  padding: 10px 20px;
  background-color: black;
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
}

/////

.new-arrivals {
  text-align: center;
  padding: 50px 0;
}

.new-arrivals h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px;
}

.section-description {
  font-size: 16px;
  margin-bottom: 40px;
  color: #333;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Three images side by side */
  gap: 20px; /* Space between images */
  justify-content: center;
  align-items: center;
  max-width: 1200px; /* Adjust according to your layout */
  margin: 0 auto;
}

.grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.grid-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.grid-item:hover img {
  transform: scale(1.05); /* Slight zoom effect on hover */
}

/* General styles remain unchanged */

.overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: black;
  color: white;
  padding: 10px 20px;
  border-radius: none;
  display: none; /* Hidden on larger screens, shown on hover */
}

.grid-item:hover .overlay {
  display: block; /* Show overlay on hover for larger screens */
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr; /* Stack images on mobile */
  }

  .grid-item {
    position: relative;
  }

  .grid-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Make overlay visible beneath the image on mobile */
  .overlay {
    position: relative;
    display: block; /* Always visible on mobile */
    background-color: transparent; /* Remove the dark background */
    text-align: center;
    margin-top: 10px;
    padding: 0; /* Adjust padding if needed */
  }

  .shop-link {
    color: #333; /* Update the text color to match the design */
    font-size: 12px;
    font-weight: bold;
    margin-top: 40px;
  }
}

.made-to-order {
  font-size: 14px;
  color: #666;
  margin-top: 40px;
}

.section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background-color: #f5f5f5;
}

.text {
  flex: 1;
  max-width: 40%;
}

.text p {
  font-size: 18px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 20px;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: black;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.image {
  flex: 1;
  max-width: 50%;
}

.image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}

//////
.section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background-color: #f5f5f5;
}

.text {
  flex: 1;
  max-width: 40%;
}

.text p {
  font-size: 18px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 20px;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: black;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.image {
  flex: 1;
  max-width: 50%;
}

.image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  .section {
    flex-direction: column; /* Stack items vertically on mobile */
    text-align: center;
  }

  .text {
    max-width: 100%;
    order: 1; /* Text comes first */
    margin-bottom: 20px;
  }

  .image {
    max-width: 100%;
    order: 2; /* Image comes second */
    margin-bottom: 20px;
  }

  .button {
    order: 3; /* Button comes after the image */
    display: inline-block;
    margin: 0 auto;
    padding: 10px 30px;
    background-color: black;
    color: white;
  }
}
/////////////////////

/* General Styling for Desktop and Mobile */
.sm-totes {
  text-align: center;
  padding: 30px 0; /* Reduced padding */
  background-color: #fff;
  max-width: 1200px; /* Limit the maximum width */
  margin: 0 auto; /* Center the section horizontally */
}

.sm-totes h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px; /* Reduced margin for mobile */
  color: #333;
  text-align: center;
}

.sm-totes h2 .highlight {
  font-style: italic;
  color: #000;
  font-size: 32px;
  font-weight: 900;
}

.tote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Three images in a row for desktop */
  column-gap: 10px; /* Small gap between images */
  justify-items: center; /* Center-align grid items */
  align-items: center;
}

.tote-item {
  width: 100%;
  max-width: 280px; /* Maximum width of each image item */
  overflow: hidden;
}

.tote-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tote-item:hover img {
  transform: scale(1.05); /* Slight zoom effect on hover */
}

.view-more-container {
  margin-top: 20px; /* Reduce the margin-top for mobile */
  display: flex; /* Flexbox to center the button */
  justify-content: center; /* Center the button horizontally */
  border: none;
}

.view-more-btn {
  padding: 10px 20px;
  background-color: #050505;
  color: white;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.view-more-btn:hover {
  background-color: #444;
}

.tote-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 25px;
  padding: 10px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .sm-totes {
    padding: 10px 5px; /* Further reduced padding for mobile */
  }

  .tote-grid {
    display: flex; /* Flexbox to create a horizontal scroll */
    overflow-x: auto; /* Enable horizontal scrolling */
    scroll-snap-type: x mandatory; /* Smooth scrolling for touch devices */
    gap: 5px; /* Small gap between images on mobile */
    padding: 10px; /* Add padding to avoid images touching the edges */
  }

  .tote-item {
    flex: 0 0 auto; /* Prevent images from shrinking */
    width: 80%; /* Adjust width for better view on mobile */
    scroll-snap-align: center; /* Center each image when scrolling */
  }

  .view-more-container {
    display: none; /* Hide view-more button on mobile */
  }
}

//////////store//////////////////////////////////

/* Basic resets */
/* Basic resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header and Navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #ccc;
  position: fixed; /* Makes the header fixed */
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff; /* Optional: Adds a background color */
  z-index: 1000; /* Ensures the header stays above other elements */
}

.logo h1 {
  font-size: 32px;
  font-weight: 900;
}

nav {
  margin-right: 90px; /* Adds space to the right, moving the links to the left */
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li {
  display: flex;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  font-size: 16px;
  color: #333;
  padding: 5px 10px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

nav ul li a.active,
nav ul li a:hover {
  border-bottom: 2px solid #000;
  color: #000;
}

.cart-icon i {
  margin-right: 5px; /* Adds space between icon and text */
}

/* To make space for the fixed header */
body {
  padding-top: 80px; /* Adjust this depending on your header height */
}

/* General styling for desktop */
.product-detail {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-left: 300px;
  margin-top: 90px;
}

.product-image {
  flex: 1;
  text-align: center;
  max-width: 500px; /* Restrict the image size */
}

.product-image img {
  max-width: 100%;
  height: auto;
}

.product-info {
  flex: 1;
  margin-left: 50px;
}

.product-info h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.underline {
  width: 50%;
  height: 2px;
  background-color: #000;
  margin-bottom: 20px; /* Create a border/underline under the title */
}

.product-info p {
  margin-bottom: 20px;
}

form label,
form select,
form input,
form button {
  display: block; /* Stack each form element */
  margin-bottom: 10px; /* Add space between each element */
}

.product-attributes {
  margin-bottom: 20px;
}

.product-attributes input[type="number"] {
  width: 50px;
  padding: 5px;
  font-size: 1.2rem;
  margin-top: 5px;
}

.price-section {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  margin-right: 20px;
}

.add-to-cart-btn {
  background-color: #050505;
  color: #fff;
  padding: 10px 20px;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
}

.add-to-cart-btn:hover {
  background-color: #050505;
}

/* Responsive design: for screens with width less than 768px (tablets and mobile phones) */
@media (max-width: 768px) {
  .product-detail {
    flex-direction: column; /* Stack the image and product info vertically */
    align-items: center; /* Center-align the content */
    padding: 20px;
  }

  .product-image {
    margin-bottom: 20px;
    max-width: 100%; /* Allow image to take full width */
  }

  .product-info {
    margin-left: 0;
    text-align: left; /* Center text for mobile screens */
  }

  .product-info h1 {
    font-size: 2rem; /* Slightly smaller font for mobile */
  }

  .price-section {
    justify-content: center; /* Center-align price section */
  }

  .product-attributes input[type="number"] {
    width: 100%; /* Full width for quantity input on mobile */
    text-align: center;
  }

  .add-to-cart-btn {
    width: 100%; /* Make button take full width on mobile */
  }
}

.page-title {
  text-align: center;
  font-size: 32px;
  font-weight: bolder;
  margin-top: 50px;
}

/* Further responsive design for very small screens (less than 480px) */
@media (max-width: 480px) {
  .product-info h1 {
    font-size: 1.8rem; /* Reduce title size for very small screens */
  }

  .product-info p {
    font-size: 1rem; /* Smaller paragraph text */
  }

  .add-to-cart-btn {
    padding: 15px; /* Increase padding for touch devices */
    font-size: 1rem; /* Adjust button font size for small screens */
  }
}

/* Cart Icon Styles */
.cart-icon {
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  text-decoration: none;
}

.cart-icon i {
  font-size: 24px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #ff4500;
  color: white;
  border-radius: 50%;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .cart-icon {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .cart-icon {
    font-size: 18px;
  }
}

/* Cart Icon Styles */
.cart-icon {
  position: relative;
  display: inline-block;
  font-size: 30px; /* Adjust size as needed */
  color: #333;
  cursor: pointer;
  text-decoration: none;
  top: -2px;
}

.cart-icon i {
  font-size: 15px;
  top: -20px;
}

.cart-count {
  position: absolute;
  top: -3px; /* Position the count badge inside the cart icon */
  right: -8px;
  background-color: #020202;
  color: white;
  border-radius: 50%;
  padding: 3px 6px;
  font-size: 7px;
  font-weight: bold;
  display: inline-block;
  min-width: 10px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cart-icon {
    font-size: 10px;
  }

  .cart-icon i {
    font-size: 10px;
  }

  .cart-count {
    top: -6px;
    right: -6px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .cart-icon {
    font-size: 10px;
  }

  .cart-icon i {
    font-size: 10px;
  }

  .cart-count {
    top: -5px;
    right: -5px;
    font-size: 9px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  header {
    flex-direction: column;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .container {
    grid-template-columns: repeat(2, 1fr); /* Two columns on tablets */
  }
}

@media (max-width: 480px) {
  .container {
    grid-template-columns: 1fr; /* Single column on mobile */
    margin-top: 200px;
  }

  .product-item img {
    max-width: 100%;
  }
}
.cart-icon {
  font-size: 24px;
  /* Add your icon styles here */
}

.add-to-cart-btn {
  padding: 10px 20px;
  background-color: #050505;
  color: white;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.add-to-cart-btn:hover {
  background-color: #050505;
}

//cart

/* General Cart Layout */
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.cart-item-image img {
  max-width: 150px;
  height: auto;
  border-radius: 8px;
}

.cart-item-details {
  flex-grow: 2;
  padding-left: 20px;
}

.remove-item a {
  font-size: 24px;
  color: red;
  text-decoration: none;
}

/* Clear Cart Button */
.clear-cart-btn {
  background-color: red;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

/* Checkout Button */
.checkout-btn {
  background-color: green;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  margin-top: 20px;
  border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item-image img {
    max-width: 100%;
    margin-bottom: 15px;
  }

  .cart-item-details {
    padding-left: 0;
    width: 100%;
  }

  .checkout-btn {
    width: 100%;
  }
}

@media (min-width: 769px) {
  .cart-item {
    flex-direction: row;
  }
}

/* Footer Styling */
.footer {
  background-color: #fff;
  color: #000;
  padding: 100px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer-top h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 900;
}

.social-icons {
  margin-bottom: 20px;
  text-align: center;
}

.social-icons a img {
  width: 40px;
  margin: 0 10px;
  transition: transform 0.2s;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

.inquiries {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.shop-inquiries,
.general-inquiries {
  margin: 0 20px;
}

.shop-inquiries h4,
.general-inquiries h4 {
  font-style: italic;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 900;
  padding-left: 20px;
}

.shop-inquiries p {
  padding-left: 20px;
}

.general-inquiries p {
  padding-left: 20px;
}

@media (max-width: 768px) {
  .shop-inquiries p {
    padding-left: 20px;
    font-size: 13px;
  }

  .general-inquiries p {
    font-size: 13px;
  }
}

.footer-divider {
  width: 90%;
  height: 3px;
  background-color: #000;
  margin: 30px auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  text-align: left;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 30px; /* Reduces the gap between the columns */
  width: 70%;
}

.footer-links ul {
  list-style: none;
  padding: 10%;
  margin-top: -10%;
  margin: 10% 90; /* Reduce the gap between each ul */
}

.footer-links ul li {
  margin-top: 5%;
}

.footer-links ul li a {
  text-decoration: none;
  color: #000;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-logo img {
  width: 100px;
  height: auto;
  margin-left: -400px;
}

/* Mobile responsive styling */
@media (max-width: 768px) {
  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns for the ul */
    gap: 20px; /* Space between the columns */
    width: 100%;
  }

  .footer-links ul:nth-child(3) {
    grid-column: 1; /* Move the third ul under the first one */
  }

  .footer-logo {
    grid-column: 2; /* Move the logo under the second column */
    display: flex;
    justify-content: center;
    margin-top: 200px;
  }
}

.footer-links .arrow-icon {
  font-size: 14px; /* Adjust size as needed */
  margin-left: 5px; /* Space between text and icon */
  color: inherit; /* Match color to the link */
  display: inline-block;
  transition: transform 0.2s ease-in-out; /* Animation on hover */
}

.footer-links a:hover .arrow-icon {
  transform: translate(3px, -3px); /* Slight movement on hover */
}
////about page////

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Muli", sans-serif;
  line-height: 1.6;
  color: #000;
}

/* Header Section */
.header {
  text-align: center;
  padding: 40px 20px;
}

.header img {
  width: 80px; /* Adjust size as needed */
  height: auto;
  margin-bottom: 20px;
}

.header h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.divider {
  width: 80%;
  height: 1px;
  background-color: #000;
  margin: 20px auto;
}
/* About Section */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.about-content {
  display: flex;
  max-width: 1200px;
  align-items: flex-start;
}

.about-content img {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-right: 40px;
}

.about-text {
  max-width: 600px;
}

.about-text h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  border-bottom: 2px solid #000;
  padding-bottom: 5px;
}

.about-text p {
  font-size: 16px;
  margin-bottom: 20px;
}

.about-text .button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  margin-top: 20px;
  margin-bottom: 30px;
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column-reverse; /* This will place the text before the image */
    text-align: center; /* Optionally, you can center the text on mobile */
  }

  .about-content img {
    margin: 0 0 20px 0; /* Adjust the margin so there’s space between the image and text */
  }

  .about-text {
    max-width: 100%; /* Make sure the text takes full width on mobile */
  }
}
/* Section Container */
.products-section {
  text-align: center;
  padding: 20px;
}

/* Header Text Styling */
.products-header p {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Products Grid */
.products-grid {
  display: flex;
  justify-content: center;
  gap: 2px;
  flex-wrap: wrap;
}

/* Product Images */
.product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Button Overlay */
.product-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: black;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: inline-block;
  z-index: 1;
  opacity: 0.8;
}

/* Footer Note */
.products-footer p {
  font-size: 14px;
  color: #666;
  margin-top: 30px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .products-grid {
    flex-direction: column;
    gap: 15px;
  }

  .product-item {
    width: 90%;
    height: auto;
  }

  .products-header p {
    font-size: 16px;
  }

  .products-footer p {
    font-size: 12px;
  }
}

.store-description {
  text-align: center; /* Center the text */
  margin-bottom: 30px; /* Add some spacing between the paragraph and the products */
}

.store-description p {
  font-size: 18px; /* Adjust font size if necessary */
  line-height: 1.6; /* Improve readability */
  color: #333; /* Text color */
}
