@import url("https://fonts.googleapis.com/css2?family=Marcellus+SC&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body a {
  text-decoration: none;
}

/***** Navbar Section *****/
.navbar {
  padding: 20px 25px;
  background-color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99999;
  /* position: fixed; */
}
.navbar .nav-content .nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  margin: 0;
  padding: 0;

  list-style: none;
}
/* Fixed navbar initial state */
.navbar-fixed {
  position: fixed;
  top: -100px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  transition: top 0.3s ease-in-out;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* When scrolling down */
.navbar-visible {
  top: 0;
}

.navbar .nav-list .nav-item a {
  font-family: "Raleway", sans-serif;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.nav-login .nav-login-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;
}
.nav-item:hover,
.nav-item:focus,
.nav-item:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* ! Resp Navbar */

.resp-navbar {
  display: none;
}

.offcanvas-body ul {
  display: flex;

  flex-direction: column;
  gap: 2rem;
  list-style: none;
  text-align: center;
}

.offcanvas-body ul li a {
  color: #c00;
  font-family: "Marcellus SC";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (max-width: 880px) {
  .navbar {
    display: none;
  }
  .resp-navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    background-color: #fff;
  }

  .resp-navbar .res-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0rem;
  }

  .res-btn .nav-resplogin-list {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 2rem 32px;
    list-style: none;
  }
}

/***** End Navbar Section *****/

/***** hero - Section *****/

.hero-section .hero-banner {
  background: url("/assets/images/hero-banner.png") no-repeat center
    center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;

  flex-direction: column;
  align-items: center;
}
.hero-banner h1 {
  color: #fff;
  text-align: center;
  font-family: "Marcellus SC";
  font-size: 110px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: bold;
  color: rgba(255, 0, 0, 0.879);
  text-shadow: 1px 1px 0 white, 2px 2px 0 white, 3px 3px 0 white,
    4px 4px 0 white, 5px 5px 0 white, 6px 6px 0 white;
}

/* Optional fine-tuning for different screen sizes */
@media (max-width: 1200px) {
  .hero-banner h1 {
    font-size: 8vw;
  }
}

@media (max-width: 768px) {
  .hero-banner h1 {
    font-size: 12vw;
  }
}

@media (max-width: 480px) {
  .hero-banner h1 {
    font-size: 14vw;
  }
}

.hero-banner .exp-btn button {
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid #fff;

  background: rgba(0, 0, 0, 0.2);
}

.hero-banner .exp-btn button a {
  color: #fff;
  text-align: center;
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* ! resp section */
@media screen and (max-width: 528px) {
  .hero-banner h1 {
    color: #fff;
    text-align: center;
    font-family: "Marcellus SC";
    font-size: 90px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}
@media screen and (max-width: 435px) {
  .hero-banner h1 {
    font-size: 70px;
  }
}
@media screen and (max-width: 340px) {
  .hero-banner h1 {
    font-size: 45px;
  }
}
/***** End hero - Section *****/

/***** Top - Section *****/
.product-img {
  position: relative;
  cursor: pointer;
}

.img-overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  padding: 10px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-img:hover .img-overlay-icon {
  opacity: 1;
}

.product-heading h2 {
  color: #c00;
  text-align: center;
  font-family: "Marcellus SC";
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.products .product-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-heading {
  margin: 7rem 0px 3rem 0px;
}

.products {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.products .product-text p {
  color: #000;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.products .pricing span {
  color: #000;
  text-align: center;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.products .pricing .strike-price {
  color: #666;
  text-align: center;
  font-family: Raleway;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: line-through;
}

.products .product-text button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border-radius: 4px;
  border: 0.5px solid #000;
  padding: 7px 7px;
}

.products .product-text button span {
  color: #000;
  text-align: center;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.products .product-img {
  width: 100%;
  height: 370px; /* Adjust height as needed for uniform display */
  overflow: hidden;
  border-radius: 146px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.products .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image fills the box without distortion */
  border-radius: 20px; /* Same as wrapper for rounded effect */
  transition: transform 0.3s ease;
}
.products .product-img img:hover {
  transform: scale(1.1);
}
.product-heading {
  margin-bottom: 30px;
  position: relative;
}

.product-heading h2 {
  margin-bottom: 10px;
  position: relative;
}

.underline {
  width: 200px;
  height: 3px;
  background-color: #c00; /* choose color */
  margin: 0 auto;
  border-radius: 2px;
}

/***** End Top - Section *****/

/***** Category Section *****/
.category-section .category-heading {
  margin: 7rem 0px 3rem 0px;
}
.category-section .category-product {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.category-section .category-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.category-section .category-heading h2 {
  color: #c00;
  text-align: center;
  font-family: "Marcellus SC";
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.category-section .category-text h3 {
  color: #000;
  text-align: center;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.category-img img {
  border-radius: 30px;
}
.category-hover-img {
  transition: transform 0.3s ease;
}

.category-product:hover .category-hover-img {
  transform: scale(1.1);
}
.category-img {
  width: 100%;
  height: 300px; /* You can adjust height as needed */
  overflow: hidden;
  border-radius: 10px;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-hover-img:hover {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .category-img {
    height: 200px;
  }
}
.category-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

/* Hover effect */
.swiper-slide:hover .slider-img {
  transform: scale(1.1);
}

/***** End Category Section *****/

/* Contact */
:root {
  --primary-color: #4f46e5;
  --secondary-color: #5d5fef;
  --dark-color: #111827;
  --light-color: #f9fafb;
  --success-color: #10b981;
  --accent-color: #7c3aed;
}

.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-header h1 {
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-container {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin-bottom: 60px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.form-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #c00;
}

.form-title {
  margin-bottom: 30px;
  padding-bottom: 20px;
  position: relative;
}

.form-title h3 {
  color: #c00;
  text-align: center;
  font-family: "Marcellus SC";
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-title h3 i {
  color: var(--primary-color);
}

.form-section-title {
  color: #c00;
  text-align: center;
  font-family: "Marcellus SC";
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.form-control,
.form-select {
  border-radius: 8px;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  background-color: #f9fafb;
  transition: all 0.2s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  padding: 1rem 0.75rem;
}

.form-floating > label {
  padding: 1rem 0.75rem;
}

.btn {
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #c00;
  border: none;

  font-family: "Marcellus SC";
}

.btn-primary:hover {
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--primary-color)
  );
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-success {
  background: linear-gradient(90deg, var(--success-color), #059669);
  border: none;
}

.btn-success:hover {
  background: linear-gradient(90deg, #059669, var(--success-color));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-text {
  color: #6b7280;
}

textarea.form-control {
  min-height: 120px;
}

.card-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  opacity: 0.05;
  background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
  background-size: 16px 16px;
  z-index: 0;
}

@media (max-width: 768px) {
  .form-container {
    padding: 25px;
  }
}

/* Return policy */
.return-text {
  margin-top: 7rem;
  margin-bottom: 7rem;
  font-family: Raleway;
  font-size: 20px;
  text-align: start;
  font-style: normal;
  font-weight: 500;
  line-height: 2rem;
  padding: 0px 2rem 1px 2rem;
}

.return-text a {
  text-decoration: none;
  font-family: Raleway;
  font-size: 20px;
  text-align: start;
  font-style: normal;
  font-weight: bolder;
  color: #000;
}
/* Return policy */
/* Term policy */
.term-head {
  text-align: start;
  font-family: Raleway;
  color: #000;
  font-size: 2rem;
  padding: 0px 2rem 1px 2rem;
  margin-top: 2rem;
}
.term-text {
  font-family: Raleway;
  font-size: 16px;
  text-align: start;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 0px 2rem 1px 2rem;
}
/* Term policy */
/***** Section footer *****/
footer {
  background: #c00;
  padding: 5rem 2rem;
  margin-top: 10rem;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.icon ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  padding: 0;
  margin: 0;
}
.footer-img-section {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.footer-img-section p {
  color: #fff;
  text-align: center;
  font-family: "Marcellus SC";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0;
  margin: 0;
}

.footer-row {
  display: flex;
  align-items: center;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact p {
  padding: 0;
  margin: 0;
  color: #fff;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.footer-contact ul {
  display: flex;

  padding: 0;
  margin: 0;
  list-style: none;
  flex-direction: column;
}

.footer-contact ul li a {
  color: #fff;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer-contact {
  text-align: left;
}

.custom-hr {
  color: rgba(255, 255, 255, 0.7);
  height: 2px;
  align-self: stretch;
  margin-top: 5rem;
}

.footer-section .footer-policy {
  display: flex;
  justify-content: space-between;
}
.footer-section .footer-policy .footer-copy {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}
.footer-policy .footer-copy p {
  color: #fff;
  text-align: center;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.footer-policy .footer-copy p a {
  color: #fff;
  font-family: Raleway;
}
.footer-policy .footer-name {
  color: #fff;
  text-align: center;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.footer-name .footer-txt a {
  color: #fff;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.footer-item ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.footer-item ul li a {
  color: #fff;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* ! Resp Part  */

@media screen and (max-width: 667px) {
  .footer-section .footer-row {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: flex-start;
  }
}

@media screen and (max-width: 255px) {
  .footer-section .footer-img-section {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (max-width: 255px) {
  .footer-section .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

/***** End Section footer *****/

/*****  Section *****/
.about-us-section {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
}
.about-container {
  width: 90%;
  height: 100%;
  max-width: 1170px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  grid-gap: 60px;
  padding: 35px 0;
}
.contentLeft,
.contentRight {
  width: 100%;
}
.contentLeft .row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}
.contentLeft .row .imgWrapper {
  width: 100%;
  height: 450px;
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.15);
}
.contentLeft .row .imgWrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  transition: 0.3s ease;
}
.contentLeft .row .imgWrapper:hover img {
  transform: scale(1.5);
}
.contentLeft .row .imgWrapper:nth-child(odd) {
  transform: translateY(-20px);
}
.contentLeft .row .imgWrapper:nth-child(even) {
  transform: translateY(20px);
}
.contentRight .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.contentRight .content h4 {
  color: #c00;
  text-align: center;
  font-family: "Marcellus SC";
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contentRight .content h2 {
  font-size: 40px;
  color: #1e272e;
}
.contentRight .content p {
  font-size: 16px;
  color: #343434;
  line-height: 28px;
  padding-bottom: 10px;
  font-family: "Marcellus SC";
}
.contentRight .content a {
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 13px 30px;
  color: #fff;
  background: #c00;
  border-radius: 8px;
  user-select: none;
}

/* Responsive Styles */

/* Tablets */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contentLeft .row {
    grid-template-columns: repeat(2, 1fr);
  }
  .contentLeft .row .imgWrapper {
    height: 250px;
  }
  .contentLeft .row .imgWrapper:nth-child(odd),
  .contentLeft .row .imgWrapper:nth-child(even) {
    transform: none;
  }
  .contentRight .content h4 {
    font-size: 40px;
    text-align: center;
  }
  .contentRight .content h2 {
    font-size: 28px;
    text-align: center;
  }
  .contentRight .content a {
    align-self: center;
  }
}

/* Mobile Devices */
@media (max-width: 576px) {
  .contentLeft .row {
    grid-template-columns: 1fr;
  }
  .contentLeft .row .imgWrapper {
    height: 180px;
  }
  .contentRight .content h4 {
    font-size: 28px;
  }
  .contentRight .content h2 {
    font-size: 24px;
  }
  .contentRight .content p {
    font-size: 14px;
    line-height: 24px;
  }
  .contentRight .content a {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* Extra spacing for bottom content */
.about-section {
  padding: 5rem 5rem 0rem 5rem;
}
.about-section .about-content h1 {
  color: #c00;
  font-family: "Marcellus SC";
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.about-section .about-content p {
  color: #000;
  font-family: Raleway;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.about-section .about-vision h2 {
  color: #c00;
  font-family: "Marcellus SC";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.about-section .about-vision p {
  color: #000;
  font-family: Raleway;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Optional: Make about-section responsive too */
@media (max-width: 768px) {
  .about-section {
    padding: 3rem 2rem 0rem 2rem;
  }
  .about-section .about-content h1,
  .about-section .about-vision h2 {
    font-size: 30px;
  }
  .about-section .about-content p,
  .about-section .about-vision p {
    font-size: 16px;
  }
}

/***** End About Section *****/

/***** Cart Section *****/
.head-text {
  color: #c00;
  text-align: center;
  font-family: "Marcellus SC";
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 20px 0px 20px 0;
}
.cart-left {
  display: flex;
  gap: 3rem;
}

.cart-quantity {
  display: flex;
  justify-content: end;
  gap: 2rem;
  height: 100%;
  align-items: center;
}

.quantity-btn {
  display: flex;
  gap: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 1);
  padding: 7px 10px;
  border-radius: 7px;
}
.cart-quantity .inc-btn {
  border: none;
}

.quantity-number {
  color: #000;
  text-align: center;
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.empty-btn {
  border: none;
}

.cart-text h4,
.cart-text p,
.quantity-total,
.total-btn {
  color: #000;
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.total-btn {
  border-radius: 100px;
  background: #f99;
  padding: 17px 40px;
  border: none;
}
/***** End Cart Section *****/

/***** checout Section *****/
.check-head {
  color: #c00;
  text-align: center;
  font-family: "Marcellus SC";
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
/***** End checout Section *****/

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.my-float {
  margin-top: 16px;
}
