/* your full existing CSS */

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

html,
body{
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

.main{
  height: 100vh;
  width: 100%;
  background-color: #d0d4D5;
}

.nav{
  height: 110px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
}

.nav-part-1{
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.nav img{
  height: 80px;
  width: auto;
  margin-right: 60px;
  cursor: pointer;
}

.nav-part-1 ul{
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  color: #000;
}

.nav-part-1 ul li{
  margin-right: 40px;
  font-size: 19px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-part-2 i{
  margin-right: 40px;
  font-size: 21px;
  font-weight: 500;
  cursor: pointer;
}

.content{
  height: calc(100% - 110px);
  width: 100%;
  position: relative;
  display: flex;
}

.content-left{
  height: 100%;
  width: 40%;
  padding: 80px 100px;
}

.content-left h5{
  font-size: 20px;
  text-transform: capitalize;
  color: #555;
  margin-bottom: 10px;
}

.content-left h1{
  font-size: 55px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 25px;
}

.content-left p{
  font-size: 20px;
  color: #000;
  width: 80%;
  margin-bottom: 30px;
}

.btn{
  background-color: #000;
  color: #fff;
  font-size: 15px;
  padding: 12px 40px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  border-top-left-radius: 0;
}

.content-right{
  height: 100%;
  width: 60%;
  padding: 110px 100px;
  white-space: nowrap;
  overflow-x: auto;
}

.content-right::-webkit-scrollbar{
  display: none;
}

.product{
  height: 370px;
  width: 250px;
  background-color: #1011;
  position: relative;
  box-shadow: 0 5px 10px rgba(17, 0, 17, 0.3);
  display: inline-block;
  margin-right: 20px;
  flex-shrink: 0;
}

.product img{
  height: 100%;
  width: 100%;
  object-fit: contain;
  position: absolute;
  bottom: 20%;
}

.product h4{
  font-size: 18px;
  text-transform: capitalize;
  position: absolute;
  bottom: 28%;
}

.catagory{
  position: absolute;
  bottom: 20%;
  font-weight: 500;
  text-transform: capitalize;
}

.color{
  position: absolute;
  bottom: 15%;
  font-weight: 500;
  text-transform: capitalize;
}

.content-slider {
  display: inline-flex;
  animation: scrollProducts 20s linear infinite;
}

@keyframes scrollProducts {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px;
  height: calc(100vh - 110px);
}

.contact-left {
  width: 40%;
}

.contact-left h1 {
  font-size: 50px;
  margin-bottom: 20px;
  color: #000;
  text-transform: uppercase;
}

.contact-left p {
  font-size: 18px;
  color: #555;
}

.contact-right {
  width: 50%;
}

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

.contact-form input,
.contact-form textarea {
  padding: 15px;
  font-size: 16px;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
}

.contact-form button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #333;
}

.success-message {
  display: none;
  background-color: #28a745;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 16px;
  margin-top: 20px;
  text-align: center;
  animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(-10px); }
  20% { opacity: 1; transform: translateY(0); }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-10px); }
}

/* Toggle Switch */
.theme-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.theme-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 34px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #111;
}

input:checked + .slider:before {
  transform: translateX(24px);
}

/* Dark Mode */
body.dark {
  background-color: #111;
  color: white;
}

body.dark .nav {
  background-color: #000;
}

body.dark .nav-part-1 ul li a {
  color: white;
}

body.dark .btn {
  background-color: white;
  color: black;
}

body.dark .product {
  background-color: #222;
  color: white;
}

body.dark .contact-form input,
body.dark .contact-form textarea {
  background-color: #222;
  color: white;
  border: 1px solid #555;
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: #111;
  margin-left: 10px;
  transition: color 0.3s ease;
}

body.dark .theme-toggle {
  color: white;
}

.content-slider:hover {
  animation-play-state: paused;
}

.team-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 60px;
  flex-wrap: wrap;
  background-color: #f2f2f2;
}

.team-card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.team-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.team-card h3 {
  margin: 10px 0 5px;
}

.team-card p {
  font-size: 14px;
  color: #555;
}

.team-card:hover {
  transform: translateY(-8px);
}

.cart-container {
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.cart-container .product {
  background: white;
  padding: 20px;
  width: 220px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.cart-container .product img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 8px;
}

.cart-container .product h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.cart-container .product p {
  font-size: 14px;
  color: #333;
}

.remove-btn {
  margin-top: 10px;
  padding: 6px 12px;
  background-color: #dc3545;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}

.remove-btn:hover {
  background-color: #b52a36;
}

.cart-total {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

/* ✅ Final updated section */
.price-cart {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
}

.price-cart .price {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.price-cart .add-to-cart {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.price-cart .add-to-cart:hover {
  background-color: #333;
}
.payment-section {
  max-width: 400px;
  margin: 40px auto;
  padding: 30px;
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.payment-section h3 {
  margin-bottom: 20px;
  text-align: center;
}

#payment-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#payment-form input {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

#payment-form button {
  margin-top: 20px;
}
.footer {
  background-color: #000;
  color: white;
  padding: 40px 60px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 15px;
}

.footer-section p,
.footer-section ul li {
  font-size: 14px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

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

.social-icons i {
  font-size: 20px;
  margin-right: 10px;
  cursor: pointer;
  transition: color 0.3s;
}

.social-icons i:hover {
  color: #aaa;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 20px;
  font-size: 13px;
}
.store-location {
  margin: 60px 100px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  background-color: #f9f9f9;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.store-location h2 {
  font-size: 28px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
}

.store-location p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.store-location a {
  color: #0073e6;
  text-decoration: none;
}

.store-location a:hover {
  text-decoration: underline;
}

.location-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 12px;
}

/* Dark mode support */
body.dark .store-location {
  background-color: #222;
  color: white;
}

body.dark .store-location p,
body.dark .store-location h2 {
  color: white;
}

body.dark .store-location a {
  color: #58a6ff;
}
.footer {
  background-color: #111;
  color: #eee;
  padding: 60px 100px 30px;
  font-size: 15px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #fff;
}

.footer-section p {
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #fff;
}

.social-icons i {
  font-size: 20px;
  margin-right: 10px;
  cursor: pointer;
  color: #ccc;
  transition: color 0.3s;
}

.social-icons i:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  font-size: 14px;
  color: #aaa;
}

/* Dark mode */
body.dark .footer {
  background-color: #000;
  color: #eee;
}

body.dark .footer a {
  color: #ccc;
}
.tenor-gif-embed {
  max-width: 80px;
  max-height: 50px;
  overflow: hidden;
  margin-right: 20px;
}
/* 📱 Mobile and Tablet Responsive */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    height: auto;
    padding: 20px;
    text-align: center;
  }

  .nav-part-1,
  .nav-part-2 {
    flex-direction: column;
    align-items: center;
  }

  .nav-part-1 ul {
    flex-direction: column;
    margin-top: 10px;
  }

  .nav-part-1 ul li {
    margin: 10px 0;
  }

  .contact-content {
    flex-direction: column;
    padding: 40px 20px;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .team-section {
    padding: 30px 20px;
  }

  .team-card {
    width: 100%;
    max-width: 320px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}

