:root{
    --pink:#A95C68;
}


* {
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    transition: .2s linear;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
}

section{
    padding:1rem 9%;
}

.Title{
    text-align: center;
    font-size: 4rem;
    color:#333;
    padding:12px;
    margin:90px 0;
}

.event-1 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 35px;
    color:#333;
    margin:35px 0;
    background:url(../images/bcg1.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    bottom: 0px;
    right: 1px;   
}
.slbtn {
    display: inline-block;
    margin-top: 1rem;
    background:#333;
    color:#fff;
    padding:.9rem 3.5rem;
    cursor: pointer;
    font-size: 1.7rem;
    border-radius: 20px;
}

.slbtn:hover {
    background:var(--pink);
}
.btn{
    display: inline-block;
    margin-top: 1rem;
    width:100%;
    background:#333;
    color:#fff;
    padding:.9rem 3.5rem;
    cursor: pointer;
    font-size: 1.7rem;

}
.btn {
    background:var(--pink);
}
.btn:hover{
    background:gray;
}

.cart-btn {
   display: block;
   width: 120%;
   text-align: center;
   background-color: #8e3a59;
   color:white;
   font-size: 1.7rem;
   padding:1.2rem 3rem;
   cursor: pointer;
   margin-top: 1rem;
}

.cart-btn:hover {
    background-color: black;
}
.heading a {
    padding:0 1.8rem;
    color:#893F45;
    font-size: 35px;
    text-decoration:underline;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
header {
    position: fixed;
    top:0; left:0; right:0;
    background: url('../images/bg1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 1px 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    z-index: 1000;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}

header .logo{
    font: 400 100px/1.2 'Great Vibes', Helvetica, sans-serif;
    font-size: 45px;
    color:#893F45;
    font-weight: bolder;
}

header .navbar a{
    font-size: 2rem;
    padding:0 1.8rem;
    color:#893F45;
}

header .navbar a:hover{
    color:var(--pink);
}


header .shopping a:hover{
    color:var(--pink);
}

header #toggler{
    display: none;
}

header .fa-bars{
    font-size: 3rem;
    color:#333;
    border-radius: .5rem;
    padding:.5rem 1.5rem;
    cursor: pointer;
    border:.1rem solid rgba(0,0,0,.3);
    display: none;
}

.shopping a{
    font-size: 2rem;
    padding:0 1.8rem;
    color:black;
    font-size: 3rem;
}

.profile-menu {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: none;
    list-style-type: none;
    margin: 10px 0 0;
    padding: 10px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 60px;
    z-index: 1;
}
.prof {
  position: relative;
  font-size: 2.5rem;
  color:#333;
  margin-left: 1.5rem;
}

.profile-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  border: none;
  background-color: transparent;
}
.shopping {
   font-size: 35px; 
}

.profile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1;
  display: none;
  padding: 10px 0;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.profile-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  text-decoration: none;
  color: #333;
}

.prof:hover .profile-dropdown {
  display: block;
}

.menu-item {
    cursor: pointer;
    padding: 5px 0;
}

.profile:hover .profile-menu {
    display: block;
}

.products .box-container{
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
}

.products .box-container .box{
/*    flex:1 1 30rem;*/
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1);
    border-radius: .5rem;
    border:.1rem solid rgba(0,0,0,.1);
    position: relative; 
    width: 320px;   
}

.products .box-container .box .image{
    position: relative;
    text-align: center;
    padding-top: 2rem;
    overflow:hidden;
}
.products .box-container .box img{
   height:25rem;
}
.products .box-container .box .image .icons{
    position: absolute;
    bottom:-7rem; left:0; right:0;
    display: flex;
}
.products .box-container .box:hover .image img{
    transform: scale(1.1);
}

.products .box-container .box:hover .image .icons{
    bottom:0;
}

.products .box-container .box .image .icons .cart-btn{
    height: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    width:50%;
    background:var(--pink);
    color:#fff;
}

.products .box-container .box .image .icons .cart-btn{
    border-left: .1rem solid #fff7;
    border-right: .1rem solid #fff7;
    width:100%;
}

.products .box-container .box .image .icons .cart-btn:hover{
    background:#333;
}

.products .box-container .box .content{
    padding:2rem;
    text-align: center;
    background-color: floralwhite ;
}

.products .box-container .box .content h3{
    font-size: 2.5rem;
    color:#333;
}

.products .box-container .box .content .price{
    font-size: 2.5rem;
    color:var(--pink);
    font-weight: bolder;
    padding-top: 1rem;
}

/*.products .box-container .box .content .price span{
    font-size: 1.5rem;
    color:#999;
    font-weight: lighter;
    text-decoration: line-through;
}*/

.see-more-button {
  background-color: #AA336A;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  position: right;
}

.see-more-button:hover {
  background-color: #C9A9A6;
}

p {
  font-family: palatino, serif;
  font-size: 18px;
}


.Footer {
   padding:20px 20px 15px;
   text-align: center;
   font-size:12px;
   background-color:lavenderblush;
}
