* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

:root {
  --body: #667085;
  --primary-color: #001b3d;
  --secondary-color: #087443;
  --accent-color: #f2b544;
  --main-bg: #f7f9f8;
  --heading-color: #102033;
  --second-text: #667085;
  --border-color: #e4e7ec;
  --success-green: #12b76a;
  --error-red: #d92d20;
  --warning-color: #f79009;
  --icon-color: #fff;
  --icon-hover-bg: #12b76a;
  --button-bg: #087443;
  --white-text-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Sans", sans-serif;
}

button,
input,
select,
option,
optgroup {
  outline: none;
  border: none;
}

/*  */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  background-color: var(--primary-color);
  color: #fff;
  padding: 20px 100px;
  border-bottom: 1px solid #606060;
  box-sizing: border-box;
}

nav .site-logo a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
}

.nav-right-side {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

nav .site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

nav .site-nav li {
  list-style-type: none;
}

nav .site-nav li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.7s ease;
}

nav .site-nav li a:hover {
  color: #ccc6c6;
}

nav .searchbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: var(--main-bg);
  padding: 8px 20px;
  border-radius: 50px;
}

nav .searchbar input {
  background: none;
  outline: none;
  border: none;
}

nav .searchbar input::placeholder {
  color: #333;
}

nav .searchbar i {
  background-color: var(--secondary-color);
  color: var(--icon-color);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.4s ease;
}

nav .searchbar i:hover {
  background-color: var(--icon-hover-bg);
}

.search-autocomplete {
  background-color: var(--main-bg);
  position: absolute;
  top: 89px;
  width: 250px;
  border-radius: 15px;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.search-autocomplete li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  list-style-type: none;
  margin-bottom: 10px;
  color: #333;
  width: 200px;
  background-color: #ededed;
  padding: 7px;
  border-radius: 4px;
}

.search-autocomplete li a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.search-autocomplete li i {
  background: none;
  font-size: 16px;
  color: #333;
}

nav .site-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

nav .site-icons .icon a {
  text-decoration: none;
}

nav .site-icons .icon i {
  background-color: var(--secondary-color);
  color: var(--icon-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.4s ease;
}

nav .site-icons .icon i:hover {
  background-color: var(--icon-hover-bg);
}

.cart-icon span {
  position: absolute;
  top: 20px;
  left: 1150px;
  background-color: var(--main-bg);
  width: 20px;
  color: #000;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 14px;
}

.wishlist-icon span {
  position: absolute;
  top: 20px;
  left: 1195px;
  background-color: var(--main-bg);
  width: 20px;
  color: #000;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 14px;
}

nav .sitebar-icon {
  display: none;
}

@media (max-width: 480px) {
  nav {
    padding: 20px 30px;
    width: 100vw;
  }

  nav .site-nav {
    display: none;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
    position: absolute;
    top: 71px;
    left: 0;
    background-color: var(--primary-color);
    width: 100vw;
    padding: 20px;
    height: 100vh;
  }

  nav .searchbar {
    display: none;
    position: absolute;
    top: 255px;
    left: 30px;
    width: 290px;
    justify-content: space-between;
  }

  .search-autocomplete {
    display: none;
    top: 53px;
    left: 0;
    width: 292px;
    justify-content: space-between;
    padding: 18px;
  }

  .search-autocomplete li {
    width: 263px;
  }

  nav .site-icons .icon i {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  nav .sitebar-icon {
    display: block;
  }

  nav .sitebar-icon button {
    background: none;
    border: none;
    outline: none;
  }

  nav .sitebar-icon button i {
    border-radius: 8px;
  }

  .cart-icon span {
    top: 12px;
    left: 215px;
  }

  .wishlist-icon span {
    top: 12px;
    left: 255px;
  }
}

/*  */
.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 10px 100px;
  background-color: var(--primary-color);
}

.left-side,
.right-side {
  width: 50%;
}

.left-side h2 {
  color: var(--white-text-color);
}

.divider {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--warning-color);
  vertical-align: middle;
  margin-right: 10px;
}

.left-side h1 {
  color: var(--white-text-color);
  font-size: 52px;
  line-height: 1.3em;
}

.left-side h1 span {
  color: var(--warning-color);
}

.left-side p {
  color: #fff;
  margin-top: 10px;
}

.buttons {
  margin-top: 30px;
}

.buttons a {
  background-color: var(--button-bg);
  color: var(--white-text-color);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  margin-right: 10px;
  font-size: 14px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.buttons a:hover {
  background-color: transparent;
  color: var(--icon-hover-bg);
  border-color: var(--icon-hover-bg);
  transform: translateY(-3px);
}

/*  */
.hero-section .right-side {
  display: flex;
  justify-content: start;
  align-items: start;
}

.hero-section .right-side img {
  width: 600px;
}

/*  */
.benifits-section {
  padding: 20px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}

.benifits-section .item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.benifits-section .item i {
  font-size: 32px;
}

.benifits-section .item h2 {
  font-size: 20px;
}

.benifits-section .item p {
  font-size: 14px;
}

@media (max-width: 480px) {
  .hero-section {
    padding: 71px 30px;
    flex-direction: column;
  }

  .left-side,
  .right-side {
    width: 100%;
  }

  .left-side h1 {
    font-size: 38px;
  }

  .left-side p {
    font-size: 14px;
  }
  .hero-section .right-side {
    margin-top: 80px;
    justify-content: flex-end;
  }

  .hero-section .right-side img {
    width: 350px;
  }
}

/*  */
.category-section {
  padding: 20px 100px;
  margin-top: 100px;
}

.category-header h2 {
  font-size: 30px;
}

.category-section .categories {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.categories .category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #001b3d, #003b73);
  padding: 20px;
  width: 400px;
  height: 200px;
  border-radius: 16px;
}

.categories .category h3 {
  color: var(--white-text-color);
  font-size: 28px;
}

.categories .category a {
  color: var(--white-text-color);
  text-decoration: none;
}

.categories .category .car-image {
  width: 300px;
}

.categories .category .mobile-image {
  width: 150px;
}

@media (max-width: 480px) {
  .category-section {
    padding: 20px 30px;
  }

  .category-header h2 {
    font-size: 24px;
  }

  .category-section .categories {
    flex-direction: column;
  }

  .categories .category {
    width: 275px;
  }

  .categories .category .car-image {
    width: 240px;
  }

  .categories .category h3 {
    font-size: 24px;
  }

  .categories .category a {
    font-size: 14px;
  }
}

/*  */
.featured-products {
  /* padding: 80px 100px; */
  padding: 0 100px;
  background: #fff;
  overflow: hidden;
}

.section-heading {
  margin: 100px auto 45px;
}

.section-heading h2 {
  color: var(--heading-color);
  font-size: 36px;
  margin: 8px 0 12px;
}

.section-heading p {
  color: #777;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 480px) {
  .benifits-section {
    padding: 20px 30px;
    align-items: start;
    gap: 20px;
  }

  .benifits-section .item {
    flex-direction: column;
    align-items: start;
  }

  .benifits-section .item i {
    font-size: 20px;
  }

  .benifits-section .item h2 {
    font-size: 16px;
  }

  .benifits-section .item p {
    font-size: 14px;
  }

  .benifits-section .return {
    display: none;
  }
}

/*  */

.products-slider {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.products-viewport {
  width: 100%;
  overflow: hidden;
}

.products-grid {
  display: flex;
  gap: 25px;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.product-card {
  flex: 0 0 calc((100% - 75px) / 4);
  min-width: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* .product-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
} */

.product-image {
  height: 160px;
  background: linear-gradient(135deg, #f5f8fc, #e8eef6);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.07);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--button-bg);
  color: #fff;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 11px;
  z-index: 2;
}

.wishlist {
  position: absolute;

  top: 14px;
  right: 14px;

  width: 38px;
  height: 38px;

  border: none;
  border-radius: 50%;

  background: #fff;
  color: var(--primary-color);

  cursor: pointer;

  font-size: 18px;

  z-index: 2;

  transition: 0.3s ease;
}

.wishlist:hover {
  background: var(--button-bg);
  color: #fff;
}

.product-content {
  padding: 20px;
}

.product-category {
  color: #777;

  font-size: 12px;

  text-transform: uppercase;

  letter-spacing: 0.8px;
}

.product-content h3 {
  color: var(--primary-color);

  font-size: 16px;

  margin: 7px 0 10px;
}

.product-rating {
  display: flex;

  align-items: center;

  gap: 3px;

  color: #f5a623;

  font-size: 12px;
}

.product-rating span {
  color: #888;

  font-size: 12px;

  margin-left: 5px;
}

.product-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-top: 18px;
}

.product-bottom h4 {
  color: var(--primary-color);

  font-size: 16px;
  margin: 0;
}

.product-bottom .links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.view-product,
.add-product {
  width: 30px;
  height: 30px;

  border-radius: 50%;

  background: var(--button-bg);
  color: #fff;

  display: flex;

  justify-content: center;
  align-items: center;

  text-decoration: none;

  font-size: 16px;

  transition: 0.3s ease;
  cursor: pointer;
}

.view-product:hover {
  transform: rotate(45deg);
}

.slider-btn {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 10;

  width: 44px;
  height: 44px;

  border: 1px solid var(--border-color);

  border-radius: 50%;

  background: #fff;

  color: var(--primary-color);

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 21px;

  cursor: pointer;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--button-bg);

  color: #fff;

  transform: translateY(-50%) scale(1.06);
}

.slider-prev {
  left: -22px;
}

.slider-next {
  right: -22px;
}

.all-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: center;
  gap: 25px;
}

@media (max-width: 1100px) {
  .featured-products {
    padding: 70px 50px;
  }

  .product-card {
    flex: 0 0 calc((100% - 25px) / 2);
  }
}

@media (max-width: 600px) {
  .featured-products {
    padding: 60px 20px;
  }

  .product-card {
    flex: 0 0 100%;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .slider-btn {
    width: 38px;
    height: 38px;

    font-size: 18px;
  }

  .slider-prev {
    left: -10px;
  }

  .slider-next {
    right: -10px;
  }

  .all-products-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*  */

/*  */

.testimonials-section {
  padding: 90px 100px;
  background: #f7f9fc;
  overflow: hidden;
  margin-top: 100px;
}

.testimonial-heading {
  margin: 0 auto 50px;
  /* text-align: center; */
}

.testimonial-heading h2 {
  color: var(--heading-color);
  font-size: 36px;
  margin: 8px 0 12px;
}

.testimonial-heading p {
  /* max-width: 650px; */
  margin: auto;
  color: #777;
  font-size: 15px;
  line-height: 1.7;
}

.testimonial-slider {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-viewport {
  width: 100%;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 25px;

  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);

  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 50px) / 3);

  background: #fff;

  border: 1px solid #e8e8e8;

  border-radius: 18px;

  padding: 25px;

  min-height: 270px;

  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.testimonial-top {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

.customer-info {
  display: flex;

  align-items: center;

  gap: 12px;
}

.customer-image {
  width: 52px;
  height: 52px;

  border-radius: 50%;

  overflow: hidden;

  background: #eef2f7;
}

.customer-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.customer-info h3 {
  color: var(--primary-color);

  font-size: 15px;

  margin: 0 0 4px;
}

.customer-info span {
  color: #888;

  font-size: 11px;
}

.testimonial-icon {
  color: var(--button-bg);

  font-size: 32px;

  opacity: 0.18;
}

.testimonial-rating {
  display: flex;

  gap: 3px;

  margin-top: 20px;

  color: #f5a623;

  font-size: 14px;
}

.testimonial-text {
  color: #666;

  font-size: 14px;

  line-height: 1.8;

  margin: 15px 0 20px;
}

.customer-purchase {
  display: inline-block;

  color: var(--primary-color);

  font-size: 11px;

  font-weight: 600;

  padding-top: 12px;

  border-top: 1px solid #eee;

  width: 100%;
}

.testimonial-btn {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 5;

  width: 44px;
  height: 44px;

  border: 1px solid #e5e5e5;

  border-radius: 50%;

  background: #fff;

  color: var(--primary-color);

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 21px;

  cursor: pointer;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

  transition: 0.3s ease;
}

.testimonial-btn:hover {
  background: var(--button-bg);

  color: #fff;

  transform: translateY(-50%) scale(1.06);
}

.testimonial-prev {
  left: -22px;
}

.testimonial-next {
  right: -22px;
}

@media (max-width: 1100px) {
  .testimonials-section {
    padding: 80px 50px;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 25px) / 2);
  }
}

@media (max-width: 600px) {
  .testimonials-section {
    padding: 70px 20px;
  }

  .testimonial-heading h2 {
    font-size: 28px;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonial-btn {
    width: 38px;
    height: 38px;

    font-size: 18px;
  }

  .testimonial-prev {
    left: -10px;
  }

  .testimonial-next {
    right: -10px;
  }
}

/*  */

.cta-section {
  position: relative;

  margin: 80px 100px;

  padding: 70px 80px;

  min-height: 320px;

  border-radius: 25px;

  overflow: hidden;

  background: var(--primary-color);

  display: flex;
  align-items: center;

  color: #fff;
}

.cta-content {
  position: relative;

  z-index: 3;

  max-width: 680px;
}

.cta-label {
  display: inline-block;

  margin-bottom: 12px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 12px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.cta-content h2 {
  margin: 0 0 15px;

  font-size: 42px;

  line-height: 1.15;

  font-weight: 700;
}

.cta-content h2 span {
  color: var(--button-bg);
}

.cta-content p {
  max-width: 600px;

  margin: 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 15px;

  line-height: 1.8;
}

.cta-actions {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-top: 28px;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  padding: 13px 20px;

  border-radius: 8px;

  text-decoration: none;

  font-size: 13px;

  font-weight: 600;

  transition: 0.3s ease;
}

.cta-primary {
  background: var(--button-bg);

  color: #fff;
}

.cta-primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);

  color: #fff;

  background: rgba(255, 255, 255, 0.05);
}

.cta-secondary:hover {
  background: #fff;

  color: var(--primary-color);

  transform: translateY(-3px);
}

.cta-actions i {
  font-size: 17px;

  transition: transform 0.3s ease;
}

.cta-primary:hover i {
  transform: translateX(4px);
}

.cta-decoration {
  position: absolute;

  right: 0;
  top: 0;

  width: 45%;
  height: 100%;
}

.cta-circle {
  position: absolute;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.circle-one {
  width: 380px;
  height: 380px;

  right: -130px;
  top: -30px;
}

.circle-two {
  width: 250px;
  height: 250px;

  right: 70px;
  top: 45px;
}

.cta-car-icon {
  position: absolute;

  right: 150px;
  top: 85px;

  font-size: 110px;

  color: rgba(255, 255, 255, 0.08);

  transform: rotate(-8deg);
}

.cta-mobile-icon {
  position: absolute;

  right: 75px;
  bottom: 55px;

  font-size: 65px;

  color: rgba(255, 255, 255, 0.07);

  transform: rotate(12deg);
}

@media (max-width: 1000px) {
  .cta-section {
    margin: 70px 50px;

    padding: 60px 50px;
  }

  .cta-content h2 {
    font-size: 36px;
  }

  .cta-decoration {
    opacity: 0.7;
  }
}

@media (max-width: 600px) {
  .cta-section {
    margin: 60px 20px;

    padding: 50px 25px;

    min-height: auto;

    border-radius: 20px;
  }

  .cta-content {
    max-width: 100%;
  }

  .cta-content h2 {
    font-size: 30px;
  }

  .cta-content p {
    font-size: 14px;
  }

  .cta-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .cta-primary,
  .cta-secondary {
    width: 82%;
  }

  .cta-decoration {
    opacity: 0.35;
  }

  .cta-car-icon {
    right: -20px;
    top: 30px;

    font-size: 100px;
  }

  .cta-mobile-icon {
    right: 20px;
    bottom: 30px;
  }
}

/*  */

.site-footer {
  background: var(--primary-color);
  color: #fff;

  padding: 70px 100px 0;
}

.footer-main {
  display: grid;

  grid-template-columns:
    1.7fr
    1fr
    1fr
    1.3fr;

  gap: 60px;

  padding-bottom: 55px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: inline-block;

  margin-bottom: 18px;

  color: #fff;

  font-size: 28px;

  font-weight: 700;

  text-decoration: none;
}

.footer-logo span {
  color: var(--button-bg);
}

.footer-brand p {
  max-width: 350px;

  margin: 0;

  color: rgba(255, 255, 255, 0.65);

  font-size: 13px;

  line-height: 1.8;
}

.footer-socials {
  display: flex;

  gap: 10px;

  margin-top: 25px;
}

.footer-socials a {
  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 50%;

  color: rgba(255, 255, 255, 0.7);

  text-decoration: none;

  font-size: 16px;

  transition: 0.3s ease;
}

.footer-socials a:hover {
  background: var(--button-bg);

  border-color: var(--button-bg);

  color: #fff;

  transform: translateY(-3px);
}

.footer-column h3 {
  margin: 0 0 20px;

  color: #fff;

  font-size: 15px;

  font-weight: 600;
}

.footer-column ul {
  list-style: none;

  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.6);

  font-size: 13px;

  text-decoration: none;

  transition: 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--button-bg);

  padding-left: 4px;
}

.contact-item {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  margin-bottom: 15px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 13px;

  line-height: 1.5;
}

.contact-item i {
  color: var(--button-bg);

  font-size: 17px;

  margin-top: 1px;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.65);

  text-decoration: none;

  transition: 0.3s ease;
}

.contact-item a:hover {
  color: #fff;
}

.footer-newsletter {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;

  padding: 35px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter h3 {
  margin: 0 0 7px;

  font-size: 17px;
}

.footer-newsletter p {
  margin: 0;

  color: rgba(255, 255, 255, 0.55);

  font-size: 12px;
}

.newsletter-form {
  display: flex;

  width: 420px;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 8px;

  padding: 5px;
}

.newsletter-form input {
  flex: 1;

  min-width: 0;

  padding: 10px 13px;

  border: none;

  outline: none;

  background: transparent;

  color: #fff;

  font-size: 12px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
  display: flex;

  align-items: center;

  gap: 6px;

  border: none;

  border-radius: 6px;

  padding: 10px 15px;

  background: var(--button-bg);

  color: #fff;

  cursor: pointer;

  font-size: 12px;

  font-weight: 600;

  transition: 0.3s ease;
}

.newsletter-form button:hover {
  opacity: 0.85;
}

.newsletter-form button i {
  transition: 0.3s ease;
}

.newsletter-form button:hover i {
  transform: translateX(3px);
}

.footer-bottom {
  min-height: 65px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;
}

.footer-bottom p {
  margin: 0;

  color: rgba(255, 255, 255, 0.45);

  font-size: 11px;
}

.footer-bottom-links {
  display: flex;

  gap: 20px;
}

.developer-link {
  color: var(--button-bg);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.developer-link:hover {
  color: #fff;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.45);

  font-size: 11px;

  text-decoration: none;

  transition: 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
}

@media (max-width: 1000px) {
  .site-footer {
    padding: 60px 50px 0;
  }

  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 40px;
  }

  .footer-contact {
    grid-column: span 3;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 55px 20px 0;
  }

  .footer-main {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-newsletter {
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
  }

  .newsletter-form {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;

    justify-content: center;

    padding: 20px 0;

    text-align: center;
  }
}
