/* *FONT-FAMILY CDN START */
/* Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Inter */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* *FONT-FAMILY CDN END */

/* *VARIABLES START */
:root {
  --heading-title-clr: #18191f;
  --sub-title-clr: #3a3a3a;
  --text-clr: #787885;
  --accent-clr: #e02c6d;

  --bg-clr: #0a0826;
  --white-clr: #ffffff;
  --black-clr: rgba(0, 0, 0, 0.87);

  --font-poppins: "Poppins", sans-serif;
  --font-inter: "Inter", sans-serif;
  --font-poppins-bold: 700;
}
/* *VARIABLES END */

/* *RESET CSS START */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: system-ui, -apple-system, "Helvetica Neue", sans-serif;
  font-family: var(--font-poppins);
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

/* input, button, textarea, select {
  font: inherit;
  color: inherit;
}

textarea {
  resize: none;
} */

button {
  border: none;
  background: none;
  cursor: pointer;
}

ol,
ul {
  list-style: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
/* *RESET CSS END */

/* *Utilities */
.container {
  margin: 0 auto;
  width: 85%;
  max-width: 1440px;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.m-auto {
  margin-inline: auto;
}

.align-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.radius-none {
  border-radius: 0 !important;
}

/* *COMMON STYLE CSS START */
h1,
h2 {
  color: var(--heading-title-clr);
}
h1,
h3 {
  font-weight: 700;
}
h2,
p {
  font-weight: 600;
}

h1 {
  font-size: clamp(1.75rem, 1.3214rem + 2.1429vw, 3.25rem);
}
h2 {
  font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2.375rem);
}
h3 {
  font-size: 1.75rem;
  color: var(--sub-title-clr);
}
p {
  font-family: var(--font-inter);
  font-size: clamp(0.875rem, 0.8393rem + 0.1786vw, 1rem);
  font-weight: 500;
  color: var(--text-clr);
}
/* *COMMON STYLE CSS END */

/* *BLOCK'S CSS START */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  height: 44px;
  font-family: var(--font-poppins);
  font-size: 0.8rem;
  font-weight: 700;
  background-color: var(--accent-clr);
  color: var(--white-clr);
  border-radius: 40px;
  transition: background-color 0.33s ease-in-out;
}
.btn:hover {
  background-color: var(--bg-clr);
}
/* *BLOCK'S CSS END */

/* *HEADER START */
header {
  margin: 35px 0 0;
}
.header-toggler i,
nav ul li {
  transition: color 0.33s ease-in-out;
}
.header-toggler:hover i {
  color: var(--accent-clr);
  cursor: pointer;
}
.logo a h2 {
  font-size: clamp(1rem, 0.8571rem + 0.7143vw, 1.5rem);
  font-weight: 700;
}
nav,
.menu,
.search-cart {
  gap: 34px;
}
.menu,
.search {
  display: none;
}
nav ul li:hover {
  color: var(--accent-clr);
}
/* *HEADER END */

/* *HERO START */
.hero {
  padding: 22px 0 55px;
}
.hero-container {
  gap: 15px;
  flex: 1;
}
.hero-contents {
  width: 100%;
  max-width: 580px;
}
.hero-contents h1 {
  line-height: 35px;
}
.hero-contents p {
  margin: 15px 0;
}
.hero-contents .btn {
  width: 170px;
}
.hero-image {
  background: url(../images/banner/circle-bg.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
/* *HERO END */

/* *BRANDS START */
.brands-images {
  gap: 20px;
}
.brands-images img {
  width: 50px;
}
.brand-images-1,
.brand-images-2 {
  gap: 30px;
}
/* *BRANDS END */

/* *PRODUCTS START */
.products {
  margin: 50px 0 30px;
}
.products-grid {
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin: 20px 0 30px;
}
.product {
  padding: 17px 15px 27px;
  border-radius: 5px;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
}
.prodtuct-image img {
  width: 100%;
}
.prodtuct-name {
  margin: 12px 0 6px;
}
.prodtuct-price span {
  font-size: 1.5rem;
  font-weight: 400;
}
.prodtuct-rating {
  margin: 5px 0 8px;
}
.prodtuct-rating ul {
  gap: 3px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fb8200;
}
.prodtuct-rating li:last-child {
  margin-left: 10px;
  color: var(--text-clr);
}
.prodtuct-delivery {
  margin-bottom: 5px;
}
.products-button {
  justify-content: flex-end;
}
.products-button .btn {
  padding: 0;
  background-color: transparent;
  color: var(--accent-clr);
  width: 100px;
  transition: color 0.33s ease-in-out;
}
.products-button .btn:hover {
  color: var(--bg-clr);
}
/* *PRODUCTS END */

/* *FEATURED START */
.featured {
  margin: 50px 0;
}
.featured-container {
  gap: 30px;
}
.featured-contents {
  width: 100%;
  max-width: 610px;
}
.featured-contents p {
  margin: 15px 0 30px;
  line-height: 20px;
}
.featured-contents .btn {
  width: 150px;
}
/* *FEATURED END */

/* *FOOTER START */
footer {
  padding: 50px 0;
  background-color: var(--bg-clr);
}
.footer-contents h2,
.footer-contents p {
  color: var(--white-clr);
}
.footer-contents h2 {
  font-size: 1.5rem;
}
footer .footer-contents p:nth-child(3) {
  margin: 5px 0 10px;
}
.footer-social-icons ul {
  gap: 7px;
}
.footer-social-icons a {
  padding: 12px;
  background-color: #22213c;
  border-radius: 50%;
  transition: background-color 0.33s ease-in-out, outline 0.43s ease-in-out;
}
.footer-social-icons a:hover {
  background-color: transparent;
  outline: 1px solid var(--accent-clr);
}
.footer-social-icons i {
  font-size: clamp(1.25rem, 1.1071rem + 0.7143vw, 1.75rem);
  color: var(--white-clr);
  transition: color 0.33s ease-in-out;
}
.footer-social-icons i:hover {
  color: var(--accent-clr);
}
/* *FOOTER END */
