* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  width: 90%;
  margin: auto;
}
body {
  font-family: "Tajawal", sans-serif;

  background: #f8f5f0;

  color: #111;
}

header {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 10;
}

.navbar {
  height: 100px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 0 70px;
}

.logo {
  font-family: "Tajawal", sans-serif;

  font-weight: 800;

  font-size: 42px;

  letter-spacing: 8px;
  color: white;
}

nav {
  display: flex;
  gap: 35px;
  align-items: center;
}

nav a {
  text-decoration: none;

  color: #fff;

  font-weight: 600;

  font-size: 16px;

  position: relative;

  transition: 0.3s;
}

nav a::after {
  content: "";

  position: absolute;

  bottom: -8px;

  left: 0;

  width: 0;

  height: 2px;

  background: #b89b72;

  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

h1,
h2,
h3 {
  font-weight: 800;

  letter-spacing: -1px;
}

p {
  font-weight: 400;

  line-height: 1.8;
}

.actions {
  display: flex;

  gap: 28px;

  align-items: center;
}

.actions i {
  font-size: 20px;

  color: white;

  cursor: pointer;

  transition: 0.3s;
}

.actions i:hover {
  color: #b89b72;

  transform: translateY(-3px);
}

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.52) 35%,
      rgba(0, 0, 0, 0.15) 100%
    ),
    url("images/banner.png");

  background-repeat: no-repeat;

  background-size: cover;

  background-position: 58% 35%;

  overflow: hidden;
}
.hero-image {
  position: absolute;

  inset: 0;
}

.hero-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.hero-image:after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.15));
}

.hero-content {
  position: absolute;

  top: 50%;

  right: 8%;

  transform: translateY(-50%);

  color: white;
}

.hero-content p {
  letter-spacing: 5px;

  font-size: 14px;

  margin-bottom: 30px;
}

.hero-content h1 {
  font-family: "Tajawal", sans-serif;

  font-weight: 800;

  font-size: 95px;

  line-height: 1.05;

  letter-spacing: -2px;
}
.hero-content a {
  display: inline-flex;

  margin-top: 45px;

  height: 60px;

  padding: 0 45px;

  align-items: center;

  background: white;

  color: #111;

  text-decoration: none;

  font-weight: 600;

  letter-spacing: 1px;
}

/*=========================
COLLECTIONS
=========================*/

.collections {
  padding: 120px 0;

  background: #f8f5f0;
}

.section-head {
  text-align: center;

  margin-bottom: 70px;
}

.section-head span {
  font-size: 13px;

  letter-spacing: 5px;

  font-weight: 600;

  color: #b89b72;
}

.section-head h2 {
  font-size: 60px;

  font-weight: 800;

  margin-top: 20px;
}

.collection-grid {
  display: grid;

  grid-template-columns: 1.5fr 1fr 1fr;

  gap: 25px;

  height: 650px;
}

.collection-card {
  position: relative;

  overflow: hidden;

  border-radius: 25px;

  display: block;
}

.collection-card img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 1s ease;
}

.collection-card:hover img {
  transform: scale(1.08);
}

.collection-card::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
}

.collection-content {
  position: absolute;

  bottom: 45px;

  left: 40px;

  z-index: 2;

  color: white;
}

.collection-content h3 {
  font-size: 45px;

  font-weight: 800;

  margin-bottom: 10px;
}

.collection-content p {
  font-size: 16px;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.collection-card:hover .collection-content {
  transform: translateY(-10px);
}

.collection-content {
  transition: 0.4s;
}

@media (max-width: 900px) {
  .collection-grid {
    grid-template-columns: 1fr;

    height: auto;
  }

  .collection-card {
    height: 450px;
  }
}

/*=========================
EDITORIAL
=========================*/

.editorial {
  padding: 140px 0;

  background: #fff;
}

.editorial-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 100px;
}

.editorial-image {
  height: 650px;

  overflow: hidden;
}

.editorial-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 1s;
}

.editorial-image:hover img {
  transform: scale(1.05);
}

.editorial-content span {
  color: #b89b72;

  letter-spacing: 5px;

  font-size: 13px;

  font-weight: 700;
}

.editorial-content h2 {
  font-size: 65px;

  line-height: 1.1;

  font-weight: 800;

  margin: 30px 0;
}

.editorial-content p {
  font-size: 19px;

  line-height: 2;

  color: #666;

  max-width: 520px;

  margin-bottom: 40px;
}

.editorial-content a {
  display: inline-flex;

  height: 55px;

  padding: 0 45px;

  align-items: center;

  background: #111;

  color: white;

  text-decoration: none;

  border-radius: 40px;

  font-weight: 700;

  transition: 0.3s;
}

.editorial-content a:hover {
  background: #b89b72;
}

@media (max-width: 900px) {
  .editorial-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .editorial-image {
    height: 450px;
  }

  .editorial-content h2 {
    font-size: 42px;
  }
}
/*=========================
FEATURED PRODUCTS PREMIUM
=========================*/

.featured-products {
  padding: 140px 0;

  background: #faf8f4;
}

.products-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

.product-card {
  background: white;

  border-radius: 32px;

  overflow: hidden;

  padding-bottom: 25px;

  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);

  transition: 0.4s;
}

.product-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.product-image {
  height: 470px;

  position: relative;

  overflow: hidden;

  border-radius: 32px 32px 0 0;

  background: #f1eee9;
}

.product-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.8s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.wishlist {
  position: absolute;

  top: 22px;

  right: 22px;

  width: 46px;

  height: 46px;

  border-radius: 50%;

  border: none;

  background: white;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 18px;

  cursor: pointer;

  z-index: 2;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

  transition: 0.3s;
}

.wishlist:hover {
  background: #111;

  color: white;
}

.quick-add {
  position: absolute;

  bottom: 20px;

  left: 20px;

  right: 20px;

  padding: 0;
}

.quick-add button {
  height: 55px;

  width: 100%;

  border: none;

  border-radius: 50px;

  background: #111;

  color: white;

  font-family: "Tajawal";

  font-size: 15px;

  font-weight: 700;

  cursor: pointer;

  opacity: 0;

  transform: translateY(50px);

  transition: 0.4s;
}

.product-card:hover .quick-add button {
  opacity: 1;

  transform: translateY(0);
}

.product-info {
  padding: 25px;
}

.product-info span {
  font-size: 12px;

  color: #999;

  letter-spacing: 3px;

  text-transform: uppercase;
}

.product-info h3 {
  font-size: 21px;

  margin: 12px 0;

  font-weight: 800;
}

.product-info p {
  font-size: 20px;

  color: #b89b72;

  font-weight: 800;
}

@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
/*=========================
CAMPAIGN
=========================*/

.campaign {
  height: 750px;

  position: relative;

  background-image: url("../images/banner.png");

  background-size: cover;

  background-position: center;

  display: flex;

  align-items: center;

  color: white;
}

.campaign-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2));
}

.campaign-content {
  position: relative;

  z-index: 2;
}

.campaign-content span {
  font-size: 14px;

  letter-spacing: 6px;

  font-weight: 700;

  color: #d2b18a;
}

.campaign-content h2 {
  font-size: 85px;

  line-height: 1.05;

  font-weight: 800;

  margin: 30px 0;
}

.campaign-content p {
  font-size: 20px;

  max-width: 500px;

  line-height: 1.8;

  margin-bottom: 45px;
}

.campaign-content a {
  display: inline-flex;

  height: 60px;

  padding: 0 50px;

  background: white;

  color: #111;

  align-items: center;

  text-decoration: none;

  font-weight: 700;

  border-radius: 50px;

  transition: 0.3s;
}

.campaign-content a:hover {
  background: #b89b72;

  color: white;
}

@media (max-width: 900px) {
  .campaign {
    height: 600px;
  }

  .campaign-content h2 {
    font-size: 50px;
  }
}
/*=========================
BEST SELLERS PREMIUM
=========================*/

.best-sellers {
  padding: 120px 0;

  background: #faf8f4;
}

.best-slider {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

.seller-card {
  background: white;

  border-radius: 32px;

  overflow: hidden;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);

  transition: 0.4s;

  padding-bottom: 25px;
}

.seller-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.seller-image {
  height: 430px;

  position: relative;

  overflow: hidden;

  border-radius: 32px 32px 0 0;
}

.seller-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.7s;
}

.seller-card:hover img {
  transform: scale(1.08);
}

.wishlist {
  position: absolute;

  top: 20px;

  right: 20px;

  width: 45px;

  height: 45px;

  border-radius: 50%;

  border: none;

  background: white;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 18px;

  cursor: pointer;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

  transition: 0.3s;
}

.wishlist:hover {
  background: #111;

  color: white;
}

.cart-btn {
  position: absolute;

  bottom: 20px;

  left: 20px;

  right: 20px;
}

.cart-btn button {
  width: 100%;

  height: 52px;

  border-radius: 50px;

  border: none;

  background: white;

  color: #111;

  font-weight: 700;

  font-family: "Tajawal";

  cursor: pointer;

  transform: translateY(80px);

  opacity: 0;

  transition: 0.4s;
}

.seller-card:hover .cart-btn button {
  transform: translateY(0);

  opacity: 1;
}

.seller-info {
  padding: 25px;
}

.seller-info span {
  font-size: 12px;

  letter-spacing: 3px;

  color: #999;

  text-transform: uppercase;
}

.seller-info h3 {
  font-size: 21px;

  margin: 12px 0;

  font-weight: 700;
}

.price {
  color: #b89b72;

  font-size: 20px;

  font-weight: 800;
}

@media (max-width: 1100px) {
  .best-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .best-slider {
    grid-template-columns: 1fr;
  }
}
/*=========================
BRAND VALUES
=========================*/

.values {
  padding: 120px 0;

  background: #f8f5f0;
}

.values-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

.value-card {
  background: white;

  padding: 50px 30px;

  text-align: center;

  border-radius: 25px;

  transition: 0.4s;
}

.value-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.value-card i {
  font-size: 38px;

  color: #b89b72;

  margin-bottom: 25px;
}

.value-card h3 {
  font-size: 24px;

  margin-bottom: 15px;

  font-weight: 800;
}

.value-card p {
  color: #777;

  line-height: 1.8;
}

@media (max-width: 1000px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}
/*=========================
INSTAGRAM
=========================*/

.instagram {
  padding: 140px 0;

  background: white;
}

.instagram-grid {
  display: grid;

  grid-template-columns: repeat(6, 1fr);

  gap: 18px;
}

.insta-card {
  height: 260px;

  position: relative;

  overflow: hidden;

  display: block;
}

.insta-card img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.8s;
}

.insta-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  display: flex;

  align-items: center;

  justify-content: center;

  opacity: 0;

  transition: 0.4s;
}

.insta-overlay i {
  font-size: 40px;

  color: white;
}

.insta-card:hover img {
  transform: scale(1.1);
}

.insta-card:hover .insta-overlay {
  opacity: 1;
}

@media (max-width: 1000px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insta-card {
    height: 200px;
  }
}
/*=========================
NEWSLETTER
=========================*/

.newsletter {
  padding: 120px 0;

  background: #f8f5f0;
}

.newsletter-box {
  background: #111;

  border-radius: 35px;

  padding: 90px 50px;

  text-align: center;

  color: white;

  position: relative;

  overflow: hidden;
}

.newsletter-box::before {
  content: "";

  position: absolute;

  width: 400px;

  height: 400px;

  background: #b89b72;

  border-radius: 50%;

  filter: blur(150px);

  opacity: 0.25;

  top: -200px;

  right: -100px;
}

.newsletter-content {
  position: relative;

  z-index: 2;
}

.newsletter-content span {
  color: #b89b72;

  letter-spacing: 5px;

  font-size: 13px;

  font-weight: 700;
}

.newsletter-content h2 {
  font-size: 65px;

  line-height: 1.1;

  margin: 25px 0;

  font-weight: 800;
}

.newsletter-content p {
  font-size: 18px;

  color: #ccc;

  margin-bottom: 40px;
}

.newsletter form {
  display: flex;

  justify-content: center;

  gap: 15px;
}

.newsletter input {
  width: 380px;

  height: 60px;

  border-radius: 50px;

  border: none;

  padding: 0 30px;

  font-family: "Tajawal";

  font-size: 16px;
}

.newsletter button {
  height: 60px;

  padding: 0 45px;

  border-radius: 50px;

  border: none;

  background: #b89b72;

  color: white;

  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;
}

.newsletter button:hover {
  background: white;

  color: #111;
}

@media (max-width: 700px) {
  .newsletter-content h2 {
    font-size: 40px;
  }

  .newsletter form {
    flex-direction: column;
  }

  .newsletter input {
    width: 100%;
  }
}
/*=========================
FOOTER
=========================*/

.footer {
  background: #111;

  color: white;

  padding: 90px 0 30px;
}

.footer-grid {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1fr;

  gap: 60px;
}

.footer-brand h2 {
  font-size: 45px;

  letter-spacing: 8px;

  font-weight: 800;

  margin-bottom: 25px;
}

.footer-brand p {
  color: #aaa;

  line-height: 1.9;

  max-width: 300px;
}

.social-icons {
  display: flex;

  gap: 20px;

  margin-top: 30px;
}

.social-icons a {
  width: 42px;

  height: 42px;

  border: 1px solid #333;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: white;

  transition: 0.3s;
}

.social-icons a:hover {
  background: #b89b72;

  border-color: #b89b72;
}

.footer-column h3 {
  font-size: 18px;

  margin-bottom: 25px;
}

.footer-column a {
  display: block;

  color: #aaa;

  text-decoration: none;

  margin-bottom: 16px;

  font-size: 15px;

  transition: 0.3s;
}

.footer-column a:hover {
  color: white;

  transform: translateX(5px);
}

.footer-bottom {
  margin-top: 70px;

  padding-top: 30px;

  border-top: 1px solid #292929;

  display: flex;

  justify-content: space-between;

  align-items: center;

  color: #777;
}

.payments {
  display: flex;

  gap: 15px;

  font-size: 32px;

  color: white;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;

    gap: 25px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/*=========================
SCROLL ANIMATION
=========================*/

.reveal {
  opacity: 0;

  transform: translateY(60px);

  transition: 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.active {
  opacity: 1;

  transform: translateY(0);
}
img {
  transition: 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.collection-card:hover img,
.product-card:hover img,
.insta-card:hover img {
  transform: scale(1.06);
}
.header {
  transition: 0.5s;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(20px);

  position: fixed;

  top: 0;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.header.scrolled .logo,
.header.scrolled nav a,
.header.scrolled .actions i {
  color: #111;
}
/*=========================
ABOUT HERO
=========================*/

.about-hero {
  height: 90vh;

  background: url("../images/banner.png");

  background-size: cover;

  background-position: center;

  display: flex;

  align-items: center;

  position: relative;

  color: white;
}

.about-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.45);
}

.about-hero-content {
  position: relative;

  z-index: 2;
}

.about-hero-content span {
  letter-spacing: 5px;

  color: #d0ae82;

  font-weight: 700;
}

.about-hero-content h1 {
  font-size: 90px;

  line-height: 1.1;

  font-weight: 800;

  margin: 30px 0;
}

.about-hero-content p {
  font-size: 22px;

  max-width: 500px;

  line-height: 1.8;
}

/*=========================
STORY
=========================*/

.story {
  padding: 140px 0;

  background: #fff;
}

.story-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;

  align-items: center;
}

.story-image {
  height: 650px;

  overflow: hidden;

  border-radius: 35px;
}

.story-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.story-content span {
  color: #b89b72;

  letter-spacing: 5px;

  font-weight: 700;
}

.story-content h2 {
  font-size: 65px;

  margin: 25px 0;

  font-weight: 800;
}

.story-content p {
  font-size: 19px;

  line-height: 2;

  color: #666;
}

/*=========================
MISSION
=========================*/

.mission {
  padding: 100px 0;

  background: #f8f5f0;
}

.mission-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 30px;
}

.mission-card {
  background: white;

  padding: 60px;

  border-radius: 35px;

  text-align: center;
}

.mission-card i {
  font-size: 40px;

  color: #b89b72;

  margin-bottom: 25px;
}

.mission-card h3 {
  font-size: 30px;

  margin-bottom: 20px;
}

/*=========================
VALUES
=========================*/

.about-values {
  padding: 140px 0;
}

.values-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 40px;
}

.value-item h3 {
  font-size: 60px;

  color: #b89b72;
}

.value-item h4 {
  font-size: 28px;

  margin: 15px 0;
}

.value-item p {
  color: #777;

  font-size: 18px;
}

/*=========================
CTA
=========================*/

.about-cta {
  padding: 120px 0;

  background: #111;

  color: white;

  text-align: center;
}

.about-cta h2 {
  font-size: 70px;

  margin-bottom: 40px;
}

.about-cta a {
  display: inline-flex;

  height: 60px;

  padding: 0 50px;

  align-items: center;

  border-radius: 50px;

  background: white;

  color: #111;

  text-decoration: none;

  font-weight: 700;
}

@media (max-width: 900px) {
  .about-hero-content h1 {
    font-size: 50px;
  }

  .story-grid,
  .mission-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .story-image {
    height: 450px;
  }
}
/*=========================
SHOP HERO
=========================*/

.shop-hero {
  height: 450px;

  background: #f8f5f0;

  display: flex;

  align-items: center;

  text-align: center;
}

.shop-title {
  max-width: 700px;

  margin: auto;
}

.shop-title span {
  letter-spacing: 5px;

  font-size: 13px;

  color: #b89b72;

  font-weight: 700;
}

.shop-title h1 {
  font-size: 80px;

  font-weight: 800;

  margin: 25px 0;
}

.shop-title p {
  font-size: 20px;

  color: #777;
}

/*=========================
SHOP TOOLBAR
=========================*/

.shop-section {
  padding: 100px 0;
}

.shop-toolbar {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 50px;
}

.categories-filter {
  display: flex;

  gap: 15px;
}

.categories-filter button {
  height: 45px;

  padding: 0 30px;

  border-radius: 50px;

  border: 1px solid #ddd;

  background: white;

  cursor: pointer;

  font-family: "Tajawal";
}

.categories-filter .active {
  background: #111;

  color: white;
}

.sort select {
  height: 45px;

  padding: 0 25px;

  border-radius: 50px;

  border: 1px solid #ddd;

  font-family: "Tajawal";
}
/*=========================
SHOP LAYOUT
=========================*/

.shop-layout {
  display: grid;

  grid-template-columns: 280px 1fr;

  gap: 50px;
}

/*=========================
FILTERS
=========================*/

.filters {
  background: #fff;

  border-radius: 30px;

  padding: 35px;

  height: max-content;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.filters h3 {
  font-size: 28px;

  font-weight: 800;

  margin-bottom: 35px;
}

.filter-box {
  padding-bottom: 30px;

  margin-bottom: 30px;

  border-bottom: 1px solid #eee;
}

.filter-box:last-child {
  border: none;
}

.filter-box h4 {
  font-size: 18px;

  margin-bottom: 20px;
}

.filter-box label {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 15px;

  color: #666;

  cursor: pointer;
}

.filter-box input {
  width: 17px;

  height: 17px;

  accent-color: #111;
}

/*=========================
PRODUCTS
=========================*/

.shop-products {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.shop-products .product-card {
  background: white;

  border-radius: 30px;

  overflow: hidden;

  padding-bottom: 20px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);

  transition: 0.4s;
}

.shop-products .product-card:hover {
  transform: translateY(-8px);
}

.shop-products .product-image {
  height: 430px;

  border-radius: 30px 30px 0 0;

  overflow: hidden;

  position: relative;
}

.shop-products .product-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.7s;
}

.shop-products .product-card:hover img {
  transform: scale(1.06);
}

.shop-products .wishlist {
  top: 20px;

  right: 20px;

  width: 45px;

  height: 45px;

  background: white;

  border-radius: 50%;

  border: none;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  position: absolute;

  z-index: 2;
}

.shop-products .quick-add {
  position: absolute;

  bottom: 20px;

  left: 20px;

  right: 20px;
}

.shop-products .quick-add button {
  height: 52px;

  width: 100%;

  border-radius: 50px;

  border: none;

  background: #111;

  color: white;

  font-family: "Tajawal";

  font-weight: 700;

  cursor: pointer;

  opacity: 0;

  transform: translateY(40px);

  transition: 0.4s;
}

.shop-products .product-card:hover .quick-add button {
  opacity: 1;

  transform: translateY(0);
}

.shop-products .product-info {
  padding: 25px;
}

.shop-products .product-info span {
  font-size: 12px;

  letter-spacing: 3px;

  color: #999;
}

.shop-products .product-info h3 {
  font-size: 21px;

  margin: 12px 0;

  font-weight: 800;
}

.shop-products .product-info p {
  font-size: 20px;

  color: #b89b72;

  font-weight: 800;
}
@media (max-width: 1100px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .filters {
    display: none;
  }

  .shop-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .shop-toolbar {
    flex-direction: column;

    gap: 25px;
  }

  .categories-filter {
    flex-wrap: wrap;

    justify-content: center;
  }

  .shop-products {
    grid-template-columns: 1fr;
  }

  .shop-title h1 {
    font-size: 45px;
  }
}
/*=========================
PRODUCT DETAILS
=========================*/

.product-details {
  padding: 120px 0;

  background: #fff;
}

.product-layout {
  display: grid;

  grid-template-columns: 1.1fr 1fr;

  gap: 80px;

  align-items: start;
}

/* Gallery */

.product-gallery {
  display: grid;

  grid-template-columns: 100px 1fr;

  gap: 25px;
}

.thumbs {
  display: flex;

  flex-direction: column;

  gap: 20px;
}

.thumbs img {
  width: 100px;

  height: 120px;

  object-fit: cover;

  border-radius: 20px;

  cursor: pointer;
}

.main-image {
  height: 700px;

  border-radius: 35px;

  overflow: hidden;

  background: #f5f2ed;
}

.main-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

/* Content */

.category {
  font-size: 13px;

  letter-spacing: 4px;

  color: #b89b72;

  font-weight: 700;
}

.product-content h1 {
  font-size: 55px;

  line-height: 1.2;

  margin: 25px 0;

  font-weight: 800;
}

.rating {
  display: flex;

  gap: 6px;

  align-items: center;

  color: #c09a62;
}

.rating span {
  color: #777;

  margin-left: 10px;
}

.product-content h2 {
  font-size: 32px;

  margin: 30px 0;

  color: #b89b72;
}

.description {
  font-size: 18px;

  line-height: 1.9;

  color: #666;

  margin-bottom: 35px;
}

.option {
  margin-bottom: 30px;
}

.option h4 {
  font-size: 18px;

  margin-bottom: 15px;
}

.colors {
  display: flex;

  gap: 15px;
}

.colors button {
  width: 35px;

  height: 35px;

  border-radius: 50%;

  border: 1px solid #ddd;

  background: #111;

  cursor: pointer;
}

.colors button:nth-child(2) {
  background: #fff;
}

.colors button:nth-child(3) {
  background: #b89b72;
}

.sizes {
  display: flex;

  gap: 12px;
}

.sizes button {
  width: 50px;

  height: 45px;

  border-radius: 50px;

  border: 1px solid #ddd;

  background: white;

  cursor: pointer;

  transition: 0.3s;
}

.sizes button:hover {
  background: #111;

  color: white;
}

.buy-area {
  display: flex;

  gap: 20px;

  margin-top: 40px;
}

.quantity {
  height: 55px;

  border: 1px solid #ddd;

  border-radius: 50px;

  display: flex;

  align-items: center;

  gap: 20px;

  padding: 0 20px;
}

.quantity button {
  border: none;

  background: none;

  font-size: 20px;

  cursor: pointer;
}

.add-cart-main {
  flex: 1;

  height: 55px;

  border: none;

  border-radius: 50px;

  background: #111;

  color: white;

  font-weight: 700;

  font-family: "Tajawal";

  cursor: pointer;
}

.shipping {
  margin-top: 40px;

  padding: 30px;

  background: #f8f5f0;

  border-radius: 25px;

  display: flex;

  flex-direction: column;

  gap: 20px;
}

.shipping div {
  display: flex;

  gap: 15px;

  align-items: center;

  color: #555;
}

.shipping i {
  color: #b89b72;
}
@media (max-width: 1000px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .main-image {
    height: 500px;
  }

  .product-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .thumbs {
    flex-direction: row;
  }

  .thumbs img {
    width: 80px;

    height: 80px;
  }

  .buy-area {
    flex-direction: column;
  }
}
/*=========================
CART PAGE
=========================*/

.cart-page {
  padding: 120px 0;

  background: #faf8f4;
}

.cart-title {
  text-align: center;

  margin-bottom: 70px;
}

.cart-title span {
  letter-spacing: 5px;

  color: #b89b72;

  font-weight: 700;
}

.cart-title h1 {
  font-size: 70px;

  margin-top: 20px;

  font-weight: 800;
}

.cart-layout {
  display: grid;

  grid-template-columns: 1fr 400px;

  gap: 50px;
}

/* ITEMS */

.cart-items {
  display: flex;

  flex-direction: column;

  gap: 25px;
}

.cart-item {
  background: white;

  border-radius: 30px;

  padding: 25px;

  display: flex;

  align-items: center;

  gap: 30px;

  position: relative;
}

.cart-image {
  width: 150px;

  height: 170px;

  border-radius: 25px;

  overflow: hidden;
}

.cart-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.cart-info h3 {
  font-size: 22px;

  margin-bottom: 10px;
}

.cart-info span {
  color: #999;

  font-size: 14px;
}

.cart-info p {
  color: #b89b72;

  font-size: 20px;

  font-weight: 800;

  margin: 15px 0;
}

.quantity {
  display: flex;

  align-items: center;

  gap: 20px;

  border: 1px solid #ddd;

  border-radius: 50px;

  padding: 8px 18px;

  width: max-content;
}

.quantity button {
  border: none;

  background: none;

  cursor: pointer;

  font-size: 18px;
}

.remove {
  position: absolute;

  right: 25px;

  top: 25px;

  border: none;

  background: #f5f5f5;

  width: 35px;

  height: 35px;

  border-radius: 50%;

  cursor: pointer;
}

/* SUMMARY */

.cart-summary {
  background: white;

  border-radius: 35px;

  padding: 40px;

  height: max-content;
}

.cart-summary h2 {
  font-size: 30px;

  margin-bottom: 35px;
}

.summary-row {
  display: flex;

  justify-content: space-between;

  margin-bottom: 25px;

  color: #666;
}

.summary-row strong {
  color: #111;
}

.coupon {
  display: flex;

  gap: 10px;

  margin: 30px 0;
}

.coupon input {
  flex: 1;

  height: 50px;

  border-radius: 50px;

  border: 1px solid #ddd;

  padding: 0 20px;

  font-family: "Tajawal";
}

.coupon button {
  border: none;

  border-radius: 50px;

  padding: 0 25px;

  background: #111;

  color: white;
}

.total {
  border-top: 1px solid #eee;

  padding-top: 25px;

  display: flex;

  justify-content: space-between;

  font-size: 22px;

  margin-bottom: 30px;
}

.total strong {
  color: #b89b72;
}

.checkout-btn {
  height: 60px;

  background: #111;

  color: white;

  border-radius: 50px;

  display: flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  font-weight: 700;
}
@media (max-width: 1000px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .cart-item {
    flex-direction: column;

    align-items: flex-start;
  }

  .cart-title h1 {
    font-size: 45px;
  }
}
/*=========================
CHECKOUT
=========================*/

.checkout-page {
  padding: 120px 0;

  background: #faf8f4;
}

.checkout-title {
  text-align: center;

  margin-bottom: 70px;
}

.checkout-title span {
  letter-spacing: 5px;

  color: #b89b72;

  font-weight: 700;
}

.checkout-title h1 {
  font-size: 70px;

  font-weight: 800;

  margin-top: 20px;
}

.checkout-layout {
  display: grid;

  grid-template-columns: 1fr 420px;

  gap: 50px;
}

/* FORM */

.form-box {
  background: white;

  padding: 40px;

  border-radius: 35px;

  margin-bottom: 30px;
}

.form-box h2 {
  font-size: 28px;

  margin-bottom: 30px;
}

.input-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;
}

.checkout-form input {
  width: 100%;

  height: 55px;

  border-radius: 50px;

  border: 1px solid #ddd;

  padding: 0 25px;

  margin-bottom: 20px;

  font-family: "Tajawal";

  font-size: 15px;
}

.payment-option {
  height: 60px;

  border: 1px solid #eee;

  border-radius: 20px;

  display: flex;

  align-items: center;

  gap: 15px;

  padding: 0 20px;

  margin-bottom: 15px;

  cursor: pointer;
}

.payment-option input {
  width: auto;

  margin: 0;
}

/* ORDER */

.order-box {
  background: white;

  padding: 40px;

  border-radius: 35px;

  height: max-content;
}

.order-box h2 {
  font-size: 30px;

  margin-bottom: 30px;
}

.order-product {
  display: flex;

  gap: 20px;

  align-items: center;

  margin-bottom: 25px;
}

.order-product img {
  width: 80px;

  height: 90px;

  border-radius: 18px;

  object-fit: cover;
}

.order-product h4 {
  font-size: 17px;

  margin-bottom: 8px;
}

.order-product span {
  color: #999;
}

.order-line {
  display: flex;

  justify-content: space-between;

  padding: 20px 0;

  border-top: 1px solid #eee;

  color: #666;
}

.order-total {
  display: flex;

  justify-content: space-between;

  font-size: 24px;

  font-weight: 800;

  padding: 25px 0;

  color: #111;
}

.order-total strong {
  color: #b89b72;
}

.place-order {
  width: 100%;

  height: 60px;

  border: none;

  border-radius: 50px;

  background: #111;

  color: white;

  font-family: "Tajawal";

  font-size: 16px;

  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;
}

.place-order:hover {
  transform: translateY(-4px);
}
@media (max-width: 1000px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .checkout-title h1 {
    font-size: 45px;
  }

  .input-grid {
    grid-template-columns: 1fr;
  }

  .form-box,
  .order-box {
    padding: 25px;
  }
}
/*=========================
THANK YOU PAGE
=========================*/

.thank-page {
  min-height: 100vh;

  background: #faf8f4;

  display: flex;

  align-items: center;

  padding: 80px 0;
}

.thank-box {
  background: white;

  max-width: 900px;

  margin: auto;

  padding: 80px 60px;

  border-radius: 45px;

  text-align: center;

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
}

.success-icon {
  width: 90px;

  height: 90px;

  border-radius: 50%;

  background: #111;

  color: white;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 35px;

  margin: 0 auto 35px;
}

.thank-box span {
  letter-spacing: 5px;

  color: #b89b72;

  font-size: 13px;

  font-weight: 700;
}

.thank-box h1 {
  font-size: 65px;

  font-weight: 800;

  margin: 25px 0;

  line-height: 1.2;
}

.thank-box p {
  font-size: 19px;

  color: #777;

  line-height: 1.8;

  max-width: 600px;

  margin: auto;
}

.order-number {
  margin: 40px 0;

  padding: 20px;

  background: #f8f5f0;

  border-radius: 50px;

  font-size: 18px;
}

.order-number strong {
  color: #b89b72;
}

.thank-details {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;

  margin: 50px 0;
}

.thank-details div {
  padding: 30px 20px;

  background: #faf8f4;

  border-radius: 25px;
}

.thank-details i {
  font-size: 30px;

  color: #b89b72;

  margin-bottom: 15px;
}

.thank-details h3 {
  font-size: 20px;

  margin-bottom: 10px;
}

.thank-details p {
  font-size: 15px;
}

.thank-buttons {
  display: flex;

  justify-content: center;

  gap: 20px;
}

.primary-btn,
.secondary-btn {
  height: 58px;

  padding: 0 45px;

  border-radius: 50px;

  display: flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  font-weight: 700;

  transition: 0.3s;
}

.primary-btn {
  background: #111;

  color: white;
}

.secondary-btn {
  border: 1px solid #111;

  color: #111;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-5px);
}
@media (max-width: 700px) {
  .thank-box {
    padding: 50px 25px;
  }

  .thank-box h1 {
    font-size: 40px;
  }

  .thank-details {
    grid-template-columns: 1fr;
  }

  .thank-buttons {
    flex-direction: column;
  }
}
/*=========================
CONTACT HERO
=========================*/

.contact-hero {
  padding: 160px 0 100px;

  background: #faf8f4;

  text-align: center;
}

.contact-hero span {
  letter-spacing: 5px;

  color: #b89b72;

  font-weight: 700;

  font-size: 13px;
}

.contact-hero h1 {
  font-size: 80px;

  font-weight: 800;

  line-height: 1.1;

  margin: 30px 0;
}

.contact-hero p {
  font-size: 20px;

  color: #777;

  max-width: 600px;

  margin: auto;

  line-height: 1.8;
}

/*=========================
CONTACT
=========================*/

.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;

  grid-template-columns: 1.2fr 0.8fr;

  gap: 60px;
}

.contact-form {
  background: white;

  padding: 50px;

  border-radius: 40px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.contact-form span {
  color: #b89b72;

  letter-spacing: 4px;

  font-size: 13px;

  font-weight: 700;
}

.contact-form h2 {
  font-size: 45px;

  margin: 20px 0 40px;
}

.input-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;

  height: 58px;

  border-radius: 30px;

  border: 1px solid #ddd;

  padding: 0 25px;

  margin-bottom: 20px;

  font-family: "Tajawal";

  font-size: 15px;
}

.contact-form textarea {
  height: 150px;

  padding-top: 20px;

  resize: none;
}

.contact-form button {
  height: 60px;

  width: 100%;

  border: none;

  border-radius: 50px;

  background: #111;

  color: white;

  font-family: "Tajawal";

  font-weight: 700;

  cursor: pointer;
}

/* INFO */

.contact-info {
  display: flex;

  flex-direction: column;

  gap: 25px;
}

.info-card {
  background: #fff;

  border-radius: 30px;

  padding: 30px;

  display: flex;

  align-items: center;

  gap: 25px;
}

.info-card i {
  width: 55px;

  height: 55px;

  border-radius: 50%;

  background: #f8f5f0;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 22px;

  color: #b89b72;
}

.info-card h3 {
  margin-bottom: 8px;
}

.info-card p {
  color: #777;
}

.social-box {
  background: #111;

  color: white;

  padding: 35px;

  border-radius: 30px;
}

.social-box h3 {
  margin-bottom: 20px;
}

.social-box a {
  color: white;

  font-size: 25px;

  margin-right: 20px;
}

/* MAP */

.map-section {
  padding-bottom: 120px;
}

.map-box {
  height: 450px;

  border-radius: 35px;

  overflow: hidden;
}

.map-box iframe {
  width: 100%;

  height: 100%;

  border: 0;
}

/* CTA */

.contact-cta {
  padding: 100px 0;

  background: #111;

  color: white;

  text-align: center;
}

.contact-cta h2 {
  font-size: 55px;
}

.contact-cta p {
  margin: 20px 0 40px;

  font-size: 20px;

  color: #ccc;
}

.contact-cta a {
  display: inline-flex;

  height: 60px;

  padding: 0 50px;

  background: white;

  color: #111;

  border-radius: 50px;

  align-items: center;

  text-decoration: none;

  font-weight: 700;
}
@media (max-width: 1000px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 50px;
  }
}

@media (max-width: 600px) {
  .input-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px;
  }

  .contact-hero h1 {
    font-size: 40px;
  }
}
/*=========================
FLOATING CONTACT
=========================*/

.floating-contact {
  position: fixed;

  right: 30px;

  bottom: 30px;

  display: flex;

  flex-direction: column;

  gap: 15px;

  z-index: 9999;
}

.float-btn {
  width: 60px;

  height: 60px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 28px;

  color: white;

  text-decoration: none;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);

  transition: 0.35s;
}

.float-btn:hover {
  transform: translateY(-7px) scale(1.05);
}

.whatsapp {
  background: #25d366;
}

.phone {
  background: #111;
}

/* Pulse Animation */

.float-btn::before {
  content: "";

  position: absolute;

  width: 60px;

  height: 60px;

  border-radius: 50%;

  animation: pulse 2s infinite;

  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);

    opacity: 0.5;
  }

  100% {
    transform: scale(1.6);

    opacity: 0;
  }
}

.whatsapp::before {
  background: #25d366;
}

.phone::before {
  background: #111;
}

@media (max-width: 600px) {
  .floating-contact {
    right: 20px;

    bottom: 20px;
  }

  .float-btn {
    width: 55px;

    height: 55px;

    font-size: 24px;
  }
}
/*
|--------------------------------------------------------------------------
| Responsive Header
|--------------------------------------------------------------------------
*/

.header {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

  width: 100%;

  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.navbar {
  width: min(94%, 1500px);

  min-height: 88px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 28px;
}

.logo {
  flex-shrink: 0;

  color: inherit;

  font-size: 31px;
  font-weight: 800;

  letter-spacing: 0.24em;

  text-decoration: none !important;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: clamp(18px, 2vw, 34px);

}

.main-nav > a {
  position: relative;

  flex-shrink: 0;

  color: inherit;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none !important;

  transition: opacity 0.25s ease;
}

.main-nav > a::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -9px;

  width: 0;
  height: 1px;

  background: currentColor;

  transform: translateX(-50%);

  transition: width 0.3s ease;
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
  width: 100%;
}

.actions {
  flex-shrink: 0;

  display: flex;
  align-items: center;

  gap: 17px;
}

.action-link {
  position: relative;

  min-width: 25px;
  min-height: 25px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: inherit;

  font-size: 18px;

  text-decoration: none !important;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.action-link:hover {
  transform: translateY(-2px);
}

.cart-count {
  position: absolute;

  top: -11px;
  right: -12px;

  min-width: 18px;
  height: 18px;

  padding: 0 5px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50px;

  background: #111;
  color: #fff;

  font-size: 10px;
  font-weight: 700;
}

.track-order-link {
  min-height: 42px;

  padding: 9px 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 7px;

  border: 1px solid currentColor;

  border-radius: 50px;

  color: inherit;

  font-size: 12px;
  font-weight: 600;

  white-space: nowrap;

  text-decoration: none !important;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.track-order-link:hover {
  background: #111;
  border-color: #111;

  color: #fff;

  transform: translateY(-2px);
}

.mobile-track-link {
  display: none !important;
}

.menu-toggle {
  width: 45px;
  height: 45px;

  padding: 0;

  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  gap: 5px;

  border: 1px solid rgba(0, 0, 0, 0.12);

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.9);
  color: #111;

  cursor: pointer;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

.menu-toggle span {
  width: 18px;
  height: 2px;

  display: block;

  border-radius: 50px;

  background: currentColor;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;

  inset: 0;

  z-index: 998;

  visibility: hidden;

  background: rgba(0, 0, 0, 0.48);

  opacity: 0;

  backdrop-filter: blur(4px);

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.nav-overlay.active {
  visibility: visible;

  opacity: 1;
}

/*
|--------------------------------------------------------------------------
| Medium Screens
|--------------------------------------------------------------------------
*/

@media (max-width: 1250px) {
  .navbar {
    width: min(96%, 1400px);

    gap: 20px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav > a {
    font-size: 13px;
  }

  .track-order-link span {
    display: none;
  }

  .track-order-link {
    width: 42px;
    height: 42px;

    padding: 0;

    border-radius: 50%;
  }
}

/*
|--------------------------------------------------------------------------
| Tablet And Mobile Navigation
|--------------------------------------------------------------------------
*/

@media (max-width: 1024px) {
  .navbar {
    min-height: 76px;
  }

  .logo {
    font-size: 26px;

    letter-spacing: 0.19em;
  }

  .main-nav {
    position: fixed;

    top: 0;
    right: 0;

    z-index: 999;

    width: min(390px, 88vw);
    height: 100vh;

    padding: 110px 32px 40px;

    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;

    gap: 0;

    overflow-y: auto;

    background: #fff;
    color: #111;

    box-shadow: -20px 0 70px rgba(0, 0, 0, 0.16);

    transform: translateX(105%);

    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .main-nav.active {
    transform: translateX(0);
  }

  .main-nav > a {
    width: 100%;

    padding: 17px 0;

    display: flex;
    align-items: center;

    border-bottom: 1px solid rgba(0, 0, 0, 0.08);

    font-size: 17px;
    font-weight: 600;
  }

  .main-nav > a::after {
    display: none;
  }

  .main-nav > a:hover {
    padding-left: 8px;
  }

  .mobile-track-link {
    margin-top: 20px;

    padding: 15px 18px !important;

    display: flex !important;
    justify-content: center;

    gap: 9px;

    border: 0 !important;
    border-radius: 12px;

    background: #111;
    color: #fff !important;

    font-size: 14px !important;
  }

  .track-order-link {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  body.nav-open {
    overflow: hidden;
  }
}

/*
|--------------------------------------------------------------------------
| Small Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 600px) {
  .navbar {
    width: 92%;

    min-height: 70px;

    gap: 13px;
  }

  .logo {
    font-size: 22px;

    letter-spacing: 0.16em;
  }

  .actions {
    gap: 13px;
  }

  .action-link {
    font-size: 16px;
  }

  .actions .action-link[aria-label="Search"] {
    display: none;
  }

  .menu-toggle {
    width: 41px;
    height: 41px;
  }

  .main-nav {
    width: 88vw;

    padding: 95px 25px 30px;
  }

  .main-nav > a {
    font-size: 16px;
  }
}
