@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css");
@import url("https://cdn-uicons.flaticon.com/4.0.0/uicons-regular-rounded/css/uicons-regular-rounded.css");

* {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  background: var(--clr-main-pink);
  color: var(--clr-text-body);
  -webkit-font-smoothing: antialiased;
}

body,
input,
select,
textarea,
button {
  color: var(--clr-text-body);
  font-size: var(--text-base);
  font-family: "Sora", sans-serif;
}

button {
  cursor: pointer;
  border: none;
}

@font-face {
  font-family: "LogoFont";
  src: url("../fonts/Negan\ DEMO.otf");
}

/* 




*/

/* START OF VARIABLES DECLARATION */
:root {
  /* Text */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 5.75rem;
  --text-8xl: 7.95rem;

  /* Colours */
  --clr-main-50: oklch(98% 0.016 73.684);
  --clr-main-100: oklch(95.4% 0.038 75.164);
  --clr-main-200: oklch(90.1% 0.076 70.697);
  --clr-main-300: oklch(83.7% 0.128 66.29);
  --clr-main-400: oklch(75% 0.183 55.934);
  --clr-main-500: oklch(70.5% 0.213 47.604);
  --clr-main-600: oklch(64.6% 0.222 41.116);
  --clr-main-700: oklch(55.3% 0.195 38.402);
  --clr-main-800: oklch(47% 0.157 37.304);
  --clr-main-900: oklch(40.8% 0.123 38.172);
  --clr-main-950: oklch(26.6% 0.079 36.259);
  --clr-main-pink: rgb(252, 205, 213);

  --clr-gray-50: oklch(98.5% 0.002 247.839);
  --clr-gray-100: oklch(96.7% 0.003 264.542);
  --clr-gray-200: oklch(92.8% 0.006 264.531);
  --clr-gray-300: oklch(87.2% 0.01 258.338);
  --clr-gray-400: oklch(70.7% 0.022 261.325);
  --clr-gray-500: oklch(55.1% 0.027 264.364);
  --clr-gray-600: oklch(44.6% 0.03 256.802);
  --clr-gray-700: oklch(37.3% 0.034 259.733);
  --clr-gray-800: oklch(27.8% 0.033 256.848);
  --clr-gray-900: oklch(21% 0.034 264.665);
  --clr-gray-950: oklch(13% 0.028 261.692);

  --clr-text-light: var(--clr-gray-400);
  --clr-text-body: var(--clr-gray-500);
  --clr-text-heading: var(--clr-gray-950);

  --clr-bg: #fff8f3;
  --clr-white: #fff;
  --clr-black: #000;
  --clr-green: #04750d;

  /* Others */
  --transition: all 0.2s ease-in-out;
  --border-radius: 15px;
  --border-radius-outer: 25px;
  --box-shadow-light: 0 -10px 10px -10px rgba(0, 0, 0, 0.105);

  --box-shadow:
    0px 16px 32px -4px rgba(12, 12, 13, 0.185),
    0px 4px 4px -4px rgba(12, 12, 13, 0.233);
  --circle-shadow: 3px 3px 10px 3px #63636321;

  /*  */
  --header-height: 70px;
}

.logo {
  font-family: "LogoFont", sans-serif;
  color: var(--clr-white);
  font-size: var(--text-4xl);
  /* border: 2px solid red; */
  width: 30%;
}
.container {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  /* border: 2px solid red;  */
  padding: 10px 20px;
}


.navlinks{
  color: var(--clr-gray-600);
  display: flex;
  align-items: center;
  /* border: 2px solid red ; */
  margin: 30px 0px;
}

.navlinks a{
  color: var(--clr-gray-600);
 font-size: var(--text-base);
   font-weight: 600;
}
.navlinks i{
  color: var(--clr-gray-600);
  padding: 5px ;
   /* font-weight: 600; */
}


.categoriesContainer{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  /* margin:20px 0px; */
  /* border: 2px solid red; */
}


.categoriesContainer button{
  padding: 7px 10px ;
  color: var(--clr-white);
  background-color:var(--clr-black) ;
  border-radius: var(--border-radius-outer);
}

.sectionTittle{
  font-size: var(--text-4xl);
  width: 20ch;
  color: var(--clr-black);
  font-weight: 600;
  margin:50px 0px;
}

.sectionTittle span{
  font-weight: 800;
}



.productCatalogueWrapper{
  margin-top:70px;
}




.productcatalogueDisplayContainer{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}




.productCard{
  /* border: 2px solid red ; */
  width: 250px ;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  padding: 5px;
  background-color: var(--clr-gray-100);
}

.productImage{
  width: 100%;
  height: 70%;
   border-radius:var(--border-radius-outer)
}

.cardFooter{
  /* border: 2px solid red; */
  padding: 10px;
  flex-grow: 7;
  height: 70px;
  display: flex;
  align-items: center;
}


.productInfomationWrapper{
  display: flex;
  flex-direction: column;
  /* border: 2px solid red; */
  width: 100%;
}

.cardTitle{
  font-size: var(--text-lg);
  color: var(--clr-black);
  font-weight: 400;
  
}

.cardPrice{
font-size: var(--text-sm);
color: var(--clr-black);
font-weight: 600;
}

.productDetailButton{
  margin: 10px 5px;
  padding: 10px 12px;
  border-radius:50%;
  /* border: 2px solid red; */
  color: var(--clr-white);
  cursor: pointer;
  background-color: var(--clr-black);
}

.footer{
  color: var(--clr-black);
}

.footerWrapper{
  margin-top: 100px;
}


.footerContainer{
  display: flex;
  padding: 10px;
  gap: 240px;
  border-top: 1px solid var(--clr-black);

}

.footerInfomationWrapper{
  display: flex;
  flex-direction: column;
}

.footerText{
  /* border: 2px solid red ; */
  width: 40ch;
  color: var(--clr-black);
  font-weight: 500;
}

.footerLinks{
  display: flex;
  flex-direction: column;
}

.footerLinks a{
  color: var(--clr-text-body);
}

.footerSocial a{
  padding-left: 5px;
  color: var(--clr-black);
}

.contact-info{
  display: flex;
  justify-content: space-between;
  padding: 10px;
  color: var(--clr-black);
  font-size: var(--text-sm);
}

.contact-info{
  font-weight: 700;
}





@media (max-width: 1300px) {
  .container {
    width: 90%;
  }
}

@media (max-width: 1200px) {



.footerContainer{
  padding: 10px;
  gap: 140px;
  border-top: 1px solid var(--clr-black);

}


.productcatalogueDisplayContainer{
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
   row-gap: 40px;
}




}

@media (max-width: 992px) {
  .footerContainer{
  padding: 10px;
  gap: 80px;
  border-top: 1px solid var(--clr-black);
}


.productcatalogueDisplayContainer{
  grid-template-columns: repeat(3,1fr);
  gap: 6px;
   row-gap: 40px;
}




}




@media (max-width: 768px) {

.categoriesContainer{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  /* margin:20px 0px; */
  border: 2px solid red;
}









   .footerContainer{
  padding: 10px;
  gap: 20px;
  border-top: 1px solid var(--clr-black);

}


.productcatalogueDisplayContainer{
  grid-template-columns: repeat(2,1fr);
  gap: 6px;
   row-gap: 40px;
   padding: 40px;
}

.contact-info{
  display: grid;
grid-template-columns: repeat(2,1fr);
}



}


@media (max-width: 628px) {
 



.productcatalogueDisplayContainer{
  grid-template-columns: repeat(2,1fr);
  gap: 6px;
   row-gap: 40px;
   padding: 0px;
}

.contact-info{
  display: grid;
grid-template-columns: repeat(2,1fr);
}



}







@media (max-width: 576px) {
  .container {
    width: 100%;
  }

   .footerContainer{
    display: flex;
    flex-direction: column;
  padding: 10px;
  gap: 20px;
  border-top: 1px solid var(--clr-black);
}


.sectionTittle{
  font-size: var(--text-4xl);
   /* border: 2px solid red ; */
  width:100%;
  color: var(--clr-black);
  font-weight: 600;
  margin:50px 0px;
}

.contact-info{
  display: grid;
grid-template-columns: repeat(2,1fr);
}




}




@media (max-width: 480px) {


.productcatalogueDisplayContainer{
  grid-template-columns: repeat(1,1fr);
  gap: 6px;
   row-gap: 40px;
   padding: 60px;
   justify-content: center;
}

.footerText{
  width: 100%;
}

.contact-info{
  display: grid;
grid-template-columns: repeat(2,1fr);
}

}

@media (max-width: 320px) {
}
