

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



/* header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;

} */

.navbar-collapse {
    justify-content: space-between;
}
.cart-counst{
	position:relative;
}
.logo{
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  color:#ffffff;
}

.box{
  color:white;
     display: flex;
    align-items: center;
    gap: 20px;

  text-align: center;
  position: relative;
}

.cart-count{
  position: absolute;
  background-color: #2f3542;
  top: -5px;
  right: 0;
  padding: 3px;
  height: 20px;
  width: 20px;
  line-height:20px ;
  border-radius: 50%;
  z-index: 99;
}

#cart-icon{
  font-size: 1.5rem;
  cursor: pointer;
  padding-top: 10px;
}

img{
  width: 100%;
}



h2.title{
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color:#ffffff;
}

/* .shop-content{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,auto));
  gap:1.5rem;
  justify-content: center;
  align-content: center;
} */

.food-box{
  position: relative;
  background-color: #fff;
  padding: 10px;
  box-shadow: 0 1px 4px rgba(40, 37, 37, 0.1);
  border-radius: 3px;
}
.shop-content .col-md-4{
	margin-bottom:40px;
}
.pic{
  overflow: hidden;
}

.pic:hover img{
transform: scale(1.5);
}

.food-img{
  transition: 0.4s;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.food-title{
  font-size: 1rem;
  font-weight: 600;
  color:#ff6348;
}

.food-price{
  font-weight:500 ;
}
.add-cart {
    /* position: absolute; */
    bottom: 0;
    right: 0;
    background-color: #a02214;
    color: white;
    padding: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.5s;
    display: block;
}
.pricess{
	padding:15px 10px;	
}

.add-cart:hover{
  background-color:#000;
}
  

.cart{
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px;
  background-color: white;
  box-shadow: 0 1px 4px rgba(40, 37, 37, 0.1);
  z-index: 100;
}

.cart-active{
  right:0;
  transition: 0.5s;
}

.cart-title{
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  padding-bottom:20px ;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.cart-box{
  display: grid;
  grid-template-columns: 32% 50% 18%;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 10px;
}

.cart-img{
  width: 75px;
  height: 75px;
  object-fit: cover;
  border:2px solid  rgba(0,0,0,0.1);
  padding: 5px;
}
.detail-box{
  display: grid;
  row-gap: 0.5rem;  
}

.price-box{
  display: flex;
    justify-content: space-between; 
}

.cart-food-title{
   font-size: 1rem;
   text-transform: uppercase;
   color:#ff6348;
   font-weight: 500;
}

.cart-price{
  font-weight: 500;
}

.cart-quantity{
  border:1px solid rgba(0,0,0,0.1);
  outline:none ;
  width: 2.4rem;
  text-align: center;
  font-size: 1rem;
}

.cart-remove{
  font-size: 24px;
  color:red;
  cursor: pointer;
}

.total{
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.total-title{
  font-size: 1rem;
  font-weight: 600;
}

.total-price{
  margin-left: 0.5rem;
}

.btn-buy{
  padding: 12px 20px;
  background-color:#2f3542;
  color:#fff;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}

#cart-close{
  position: absolute;
  top: 1rem;
  right: 0.8rem;
  font-size: 2rem;
  cursor: pointer;
}
/* login */
.containers {
    width: 50%;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    max-width: 100%;
    margin: 0 auto;
}
.containers .registration{
  display: none;
}
#check:checked ~ .registration{
  display: block;
}
#check:checked ~ .login{
  display: none;
}
#check{
  display: none;
}
.container .form{
  padding: 2rem;
}
.form header {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1.5rem;
    position: unset;
}
 .form input{
   height: 60px;
   width: 100%;
   padding: 0 15px;
   font-size: 17px;
   margin-bottom: 1.3rem;
   border: 1px solid #ddd;
   border-radius: 6px;
   outline: none;
 }
 .form textarea{
  height: 80px;
width: 100%;
padding: 15px;
font-size: 17px;
margin-bottom: 1.3rem;
border: 1px solid #ddd;
border-radius: 6px;
outline: none;
}
 .form input:focus{
   box-shadow: 0 1px 0 rgba(0,0,0,0.2);
 }
 .form textarea:focus{
  box-shadow: 0 1px 0 rgba(0,0,0,0.2);
}
.form a{
  font-size: 16px;
  color: #a02214;
  text-decoration: none;
}
.form a:hover{
  text-decoration: underline;
}
.form input.button{
  color: #fff;
  background: #a02214;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 1.7rem;
  cursor: pointer;
  transition: 0.4s;
}
.form input.button:hover{
  background: #000;
}
.signup{
  font-size: 17px;
  text-align: center;
}
.signup label{
  color: #a02214;
  cursor: pointer;
}
.signup label:hover{
  text-decoration: underline;
}
/* cart */
.cart-container {
    max-width: 1200px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #000;
    font-size: 2rem;
    margin-bottom: 20px;
}

h1 span {
    font-size: 1.2rem;
    color: #666;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cart-table th,
.cart-table td {
    padding: 15px;
    text-align: left;
}

.cart-table th {
    font-weight: bold;
    color: #1d2b64;
}

.cart-table td img {
    width: 50px;
    margin-right: 10px;
}

.cart-table td .remove {
    background-color: transparent;
    border: none;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-table .discounted {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}

.cart-table .sale-price {
    color: #f39c12;
    font-weight: bold;
}

.qty button {
    background-color: #f2f2f2;
    border: none;
    padding: 5px 10px;
    margin: 0 5px;
    font-weight: bold;
}

.qty input {
    width: 40px;
    text-align: center;
}

.coupon-section {
    display: flex;
    justify-content: end;
    margin-bottom: 30px;
}
.coupon-section input {
    padding: 10px;
    flex: 1;
    margin-right: 10px;
}

.coupon-section .btn {
    padding: 10px 20px;
    background-color: #a02214;
    color: white;
    border: none;
    cursor: pointer;
    margin-right: 10px;
}

.cart-summary {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    
    
}

.cart-summary h2 {
    color: #1d2b64;
    margin-bottom: 15px;
}

.cart-summary p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.cart-summary p span {
    font-weight: bold;
}

.cart-summary .shipping {
    margin-bottom: 20px;
}

.cart-summary .shipping label {
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
}

.cart-summary .shipping a {
    color: #1d2b64;
    text-decoration: underline;
}

.cart-summary .btn.checkout {
    background-color: #a02214;
    color: white;
    padding: 15px 30px;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
}

.cart-summary .continue {
    display: block;
    margin-top: 15px;
    text-align: right;
    color: #1d2b64;
    text-decoration: underline;
}
/* checkout */

.checkout-container {
    max-width: 1200px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}



.login-coupon {
    color: #000;
    margin-bottom: 10px;
}

.login-coupon a {
    color: #1d2b64;
    text-decoration: underline;
}

.checkout-content {
    display: flex;
    justify-content: space-between;
}

.billing-details {
    width: 60%;
}

.billing-details h2 {
    color: #000;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.billing-details form {
    display: flex;
    flex-direction: column;
}

.billing-details label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #a02214;
    font-size: 15px;
}

.billing-details label span {
    color: red;
}

.billing-details input {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
}

.billing-details input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.order-summary {
    width: 35%;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.order-summary h2 {
    color: #000;
    margin-bottom: 20px;
}

.order-summary table {
    width: 100%;
    margin-bottom: 20px;
}

.order-summary th,
.order-summary td {
    padding: 10px;
    text-align: left;
}

.order-summary td {
    font-size: 1rem;
}

.payment-methods label {
    display: block;
    margin-bottom: 10px;
}

.payment-methods .check-info {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.payment-methods img {
    width: 150px;
    margin-top: 10px;
}

.terms {
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.btn {
    display: block;
    padding: 10px;
    background-color: #a02214;
    color: white;
    border: none;
    text-align: center;
    font-size: 15px;
    cursor: pointer;
}
.btn.place-order {
    margin-top: 20px;
}
/* thankyou */
.alert-info p{
	text-align:center;
}
.alert-info {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 20px;
    border-radius: 3px;
    background: #fff;
    border-top: 3px solid #a02214;
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.account-card {
    margin-bottom: 30px;
    border-radius: 8px;
    padding: 0px 30px 30px;
    background: #fff;
}
.account-title {
    padding: 18px 0px;
    margin-bottom: 25px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #000;
}
.invoice-recieved {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.invoice-details li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}
.invoice-details li h6 {
    line-height: 26px;
    white-space: nowrap;
}
.invoice-details li p {
    width: 250px;
    text-align: right;
    color: #a02214;
    font-weight: 500;
}