*{
	font-family: Segoe UI, selawik, Arial, sans-serif;
	box-sizing: border-box;
}

p,h3,button{
	margin:0;
	padding: 0;
}

body{
	margin: 0;
}

/*@font-face {*/
/*    font-family: 'Oswald';*/
/*    src: url('Oswald-VariableFont_wght.ttf') format('truetype');*/
/*    font-weight: 200 700;*/
/*    font-style: normal;*/
/*}*/

header {
	padding: 1rem;
	display: flex;
	flex-direction: row;
	justify-content: center;
 	position: relative;
}

.logo {
	max-width: 165px;
    width: 100%;
    height: auto;
}

.logoHeader {
    max-width:220px;
}

.cart {
  position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    width: 64px;
    height: 64px;
    justify-content: center;
    align-items: center;
}

.cart img {
  width: 80%;
  height: 80%;
}

.cart-count {
 position: absolute;
    top: 15.5%;
    left: 84%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    background-color: black;
    font-size: 16px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s;
}

.cart-count.bump {
  transform: translate(-50%, -50%) scale(1.1);
}

/*-----------*/


.mainProductCont{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 4rem;
	justify-content: center;
	padding: 6rem 1rem 6rem 1rem;
}

.productCont {
	display: flex;
	flex-direction: column;
	align-items: center;
	
	/*flex: 0 0 calc(33.33% - 2rem);*/
	position: relative;
	  gap: 5px;
}

.productBtn {
	width: 100%;
	padding: 5px;
	border:none;
	/*font-weight: 400;*/
	transition: 0.2s;
	background-color: #eae8e8;
	font-size: 1em;
		color:#88817f;
}

.add-to-cart:hover { 
	transform: scale(1.04);
	cursor: pointer;
}

.add-to-cart {
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  font-weight: bold;
}

.add-to-cart.success {
  background-color: #2f7d32;
  color: #fff;
}

.add-to-cart:disabled {
  opacity: 0.6;
  /*cursor: not-allowed;*/
}

.productDesc{
	display: flex;
	flex-direction:row;
	justify-content: space-between;
	width: 100%;
	padding: 0 10px 0 10px;
	box-sizing: border-box;
	color: #88817f;
}




.productCart {
	position:absolute;
	bottom: 21%;
    right: 80%;
	width: 32px;
	height: 32px;
	display: none;
	transition: 0.3s ease;
}


.productLink {
	text-decoration: none;
	color: black;
	display: flex;
  flex-direction: column;
  align-items: center;

}


.productImg {
	width: 250px;
	margin-bottom: 0.5rem;
}

.productCont p {
	margin: 0;
	
}
.productPrice {
    font-weight: bold;
}
/*---------*/

footer {
	display: flex;
	flex-direction: column;
}

.firstFooterRow {
	display: flex;
	flex-direction: row;
	padding: 3rem;
	background-color: #eae8e8;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.ffr1 {
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-self: flex-start;
}
.ffr1 p {
    width: 64%;
    color: #88817f;
}

.ffr3 p{
	font-size: x-small;
	margin:0;
	color: #88817f;
}

.ffr3 h3 {
	font-weight: 300;
	font-size: xx-large;
	margin: 0;
	color: #88817f;
}

.ffrc {
	flex:1;
}



.ffr3 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	gap: 0.5rem;
	height: fit-content;
    flex:1;
}

.linear-repeating {
	border: 10px solid transparent;
	border-image: url("Media/newsletter-border.svg") 10 round;
	padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 400px;
}

.emailSubmitCont{
	display: flex;
	flex-direction: row;
}

.emailSubmit {
	width: 100%;
}

.emailSubmitBtn{
	padding: 0;
	border:0;
	display: flex;
}

.emailSubmitBtn:hover{
	cursor: pointer;
}

.emailSubmitBtn img{
	height: 30px;
}

.footerSocialCont {
	display: flex;
	flex-direction: row;
	justify-content: center;
  align-items: center;
  gap: 20px;
  flex: 0 0 auto;
}


.secondFooterRow {
	display: flex;
	flex-direction: row;
	justify-content: center;
	padding: 1rem;
}



.socialIcon { width:43px; height:43px; transition: 0.2s; cursor:pointer; }
.socialIcon:hover { transform: scale(1.1); opacity: 0.8; }

/* ===== Responsive ===== */
@media (max-width: 1050px) {
	.mainProductCont {
		gap: 2rem;
	}
		 .firstFooterRow{
  	flex-direction: column;
  	justify-content: center;
  	align-items: center;
  	gap: 1.5rem;
  }
  
  .ffr1 {
      align-items: center;
  }

.linear-repeating {
    max-width: 100%;
}

}


@media (max-width: 768px) {


 .footerlogo{
 	max-width: 210px;
 }
 .ffr1{
 	align-items: center;
 }

.ffr1 p{
 padding-top: 1rem;
}

}

@media (max-width: 500px) {
    .ctaPDesk{
        display: none;
    }
    .ctaPMob{
        display:block;
    }
}

@media (max-width: 425px) {
.linear-repeating {
    width: 100%;
}
    
}