:root {
  --container-width-1g: 89%;
  --container-width-md: 94%;
  --transition: all 400ms ease;
  --mainColor: rgba(100, 39, 36, 1);
}
html {
  scroll-behavior: smooth;
}
* {
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  user-select: none;
}

img {
  display: block;
  object-fit: cover;
  width: 100%;
}
.container {
  width: var(--container-width-1g);
  margin: 0 auto;
  max-width: 2160px;
}
.all__page {
  overflow-x: hidden;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  background: rgba(100, 39, 36, 1);
  background-repeat: no-repeat;
}

/* start mav */
nav {
  position: fixed;
  width: 100%;
  z-index: 1111111;
  -webkit-box-shadow: -1px 19px 14px -6px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 19px 14px -6px rgba(0, 0, 0, 0.75);
  box-shadow: -3px 12px 18px -4px rgba(0, 0, 0, 0.75);
  background: linear-gradient(to right, rgba(100, 39, 36, 1) 70%, white 70%);
}
.nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px auto;
}
nav .left__side img {
  height: 3rem;
  width: 3rem;
  border-radius: 100%;
}
nav .right__side ul {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
nav .right__side li a {
  color: rgba(100, 39, 36, 1);
  cursor: pointer;
  font-weight: bold;
  font-size: 17px;
  position: relative;
  padding: 8px 0;
}
nav .right__side ul li:nth-child(1) a {
  padding: 10px 10px;
  font-size: 16px;
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-style: normal;
  border: 1px solid rgba(100, 39, 36, 1);
}
nav .right__side li a::after {
  content: "";
  position: absolute;
  background: rgba(150, 82, 84, 1);
  height: 2px;
  width: 0%;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  transition: var(--transition);
}
nav .right__side li a:hover::after {
  width: 100%;
}
nav .right__side .nav__bar,
nav .right__side .close__bar {
  display: none;
}
nav .right__side .shop__icon {
  display: none;
}
/*End Nav */

/* start head */
.head {
  margin-top: 4rem;
  color: rgba(100, 39, 36, 1);
  background-image: url(../image/web\ test.jpg);
  background-size: cover;
  height: 100vh;
  background-repeat: no-repeat;
  position: relative;
  background-position: 100% 44%;
}
.head__container {
  position: relative;
  top: 2rem;
  line-height: 3.5rem;
  text-align: center;
}

.head__container h1 {
  font-size: 60px;
}
.head__container p {
  font-family: math;
  font-size: 19px;
  letter-spacing: 2px;
}

/* button Style */
.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 30px;
  border: 4px solid;
  border-color: transparent;
  font-size: 14px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: rgba(100, 39, 36, 1);
  box-shadow: 0 0 0 2px rgba(100, 39, 36, 1);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  margin: auto;
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: rgba(100, 39, 36, 1);
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: rgba(100, 39, 36, 1) transparent;
  color: rgba(100, 39, 36, 1);
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #212121;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px rgba(100, 39, 36, 1);
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

/* button Style */
/* End head */

/* modile section */
.modle__section {
  position: relative;
  margin: 2rem auto;
  overflow-x: hidden;
}
section h1 {
  font-weight: 900;
  font-family: auto;
  text-align: center;
  font-size: 33px;
  width: fit-content;
  margin: 3rem auto;
  color: white;
  padding: 0px 29px;
  background: linear-gradient(
    118deg,
    rgba(148, 10, 12, 99) 10%,
    rgba(0, 0, 0, 1) 100%
  );
  border-radius: 0rem 6px 6px 0rem;
}
section h1 i {
  font-size: 27px;
  margin-left: 11px;
  position: relative;
  left: -5px;
}
.modle__section .modle__card img {
  border-radius: 14px;
}
/* proj edit */
.swiper-button-next,
.swiper-button-prev {
  position: relative;
}
.swiper-button-next,
.swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 62%) !important;
}
.modle__card {
  padding: 4px 0 0 4px;
  border-radius: 14px;
}
/* proj edit */
/* modile section */

/* parts section */
.parts__container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.parts__container article {
  border-radius: 14px;
  position: relative;
  padding: 5px;
  width: 95%;
  margin: 0 auto;
}
.parts__container article:nth-child(1) {
  border-left: 2px white;
  border-top: 2px white;
  border-style: double;
}
.parts__container article:nth-child(2) {
  border-right: 2px white;
  border-bottom: 2px white;
  border-style: double;
}
.parts__container article:nth-child(3) {
  border-left: 2px white;
  border-top: 2px white;
  border-style: double;
}
.parts__container article:nth-child(4) {
  border-right: 2px white;
  border-bottom: 2px white;
  border-style: double;
}
.parts__container article img {
  border-radius: 14px;
}
.parts__container article .box__content {
  position: absolute;
  width: 63%;
  height: 50%;
  background: linear-gradient(118deg, rgba(251, 74, 74, 1) 11%, rgba(0, 0, 0, 1) 53%);
  color: white;
  border-radius: 14px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0px 9px;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  
}
.parts__container article .box__content.visible {
  opacity: 1;
  pointer-events: auto;
}
.parts__container article .box__content p {
  font-weight: 600;
  text-align: start;
}

.parts__container article .parts__hide{
  color: white;
font-weight: 900;
font-size: 20px;
position: absolute;
background: rgba(100, 0, 36, 1);
width: fit-content;
left: 50%; 
bottom: 1.5rem;
transform: translateX(-50%); 
padding: 0.5rem 1.7rem;
border-radius: 4rem 5rem 1rem;
display: none;
}

.parts__container article .parts__about{
  color: white;
  font-weight: 900;
  font-size: 20px;
  position: absolute;
  background: rgba(100, 0, 36, 1);
  width: fit-content;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%); 
  padding: 0.5rem 1.7rem;
  border-radius: 4rem 5rem 1rem;
}

/* parts section */

/* size section */
.size__section h1 i {
  margin-left: 1rem;
}
.size__section {
  margin: 2rem auto;
}
.size__section table {
  width: 79%;
    margin: 40px auto;
    border-collapse: collapse;
    text-align: center;
    border: 1px solid white;
}

.size__section thead th {
  border-bottom: 2px solid white;
  font-weight: bold;
  color: black;
}

.size__section th, td {
  border: 1px solid white;
  padding: 10px;
}

.size__section td {
  color: white;
}

.size__section thead th {
  background-color: rgba(255, 255, 255);
  color: black;
}

.size__section tbody td:first-child {
  font-weight: bold;
  text-align: left;
}
@media (max-width: 800px) {
  .size__section table{
    width: 95%;
  }
}

/* size section */

/* footer */

footer {
  text-align: center;
  color: white;
  padding: 2rem 0 4rem 0;
}
footer p {
  font-weight: bold;
  width: 95%;
  margin: 0 auto;
  border-bottom: 1px solid white;
  padding: 10px 0;
}
footer .social {
  margin-top: 15px;
}
footer .social a i {
  padding: 0 10px;
  font-size: 24px;
  color: white;
}

/* icone style */
.button {
  height: 50px;
  width: 200px;
  position: relative;
  background-color: transparent;
  cursor: pointer;
  border: 2px solid white;
  overflow: hidden;
  border-radius: 30px;
  border-radius: 0rem 6rem 6rem 0rem;
  transition: all 0.5s ease-in-out;
  margin-top: 1rem;
}

.btn-txt {
  z-index: 1;
  font-weight: 800;
  letter-spacing: 4px;
}

.type1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s ease-in-out;
  background-color: white;
  border-radius: 30px;
  visibility: hidden;
  height: 10px;
  width: 10px;
  z-index: -1;
}

.button:hover {
  box-shadow: 1px 1px 200px black;
  border: none;
}
.button:hover a {
  color: black !important;
}
.type1:hover::after {
  visibility: visible;
  transform: scale(100) translateX(2px);
}
/* icone style */
/* footer */

/* mobile vew */
@media (max-width: 800px) {
  .container {
    width: var(--container-width-md);
  }
  nav {
    background: linear-gradient(to right, rgba(100, 39, 36, 1) 25%, white 25%);
  }
  .head {
    background-image: url(../image/web\ test.jpg);
    background-position: center center;
  }
  .parts__container {
    grid-template-columns: 1fr;
  }
  .animated-button {
    font-size: 11px;
  }
  .head__container h1 {
    font-size: 48;
  }
  .head__container p {
    font-size: 14px;
  }
  section h1 {
    font-size: 27px;
  }
  .parts__container article img {
    height: 100%;
  }
  .parts__container article {
    height: 95%;
  }
  
}
/* mobile vew */



/* modification */
section h1 .hodes__section__icon{
  font-size: 21px;
}
/* modification */


/* hoodies size */
.hoodies__continer table {
  width: 79%;
    margin: 40px auto;
    border-collapse: collapse;
    text-align: center;
    border: 1px solid white;
}

.hoodies__continer thead th {
  border-bottom: 2px solid white;
  font-weight: bold;
  color: black;
}

.hoodies__continer th, td {
  border: 1px solid white;
  padding: 10px;
}

.hoodies__continer td {
  color: white;
}

.hoodies__continer thead th {
  background-color: rgba(255, 255, 255);
  color: black;
}

.hoodies__continer tbody td:first-child {
  font-weight: bold;
  text-align: left;
}
@media (max-width: 800px) {
  .hoodies__continer table{
    width: 95%;
  }
}
/* hoodies size */