@import url('components.css');

/* General Body Styling */
body {
    background-color: #000000; /* Black background */
    font-family: 'Rubik', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #ffffff; /* White text */
}

/* Header and Navigation */
.header {
    background-color: #1a1a1a; /* Dark gray for header */
    border-bottom: 1px solid #333333; /* Dark border */
}

.header .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
}

.header .logo {
    font-size: 2rem;
    color: #FF6B00; /* Orange for logo */
    font-weight: bold;
}

.header .navbar a {
    margin: 0 1rem;
    font-size: 1.6rem;
    color: #ffffff; /* White text */
    transition: color 0.3s;
}

.header .navbar a:hover {
    color: #FF6B00; /* Orange on hover */
}

.header .icons div {
    font-size: 2rem;
    margin-left: 1.5rem;
    color: #ffffff; /* White icons */
    cursor: pointer;
    transition: color 0.3s;
}

.header .icons div:hover {
    color: #FF6B00; /* Orange on hover */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.6rem;
    border-radius: .5rem;
    border: none;
    cursor: pointer;
    text-transform: capitalize;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #FF6B00; /* Orange */
    color: #ffffff; /* White text */
}

.btn-primary:hover {
    background-color: #FF8C42; /* Lighter orange on hover */
}

.btn-secondary {
    background-color: #333333; /* Dark gray */
    color: #ffffff; /* White text */
}

.btn-secondary:hover {
    background-color: #555555; /* Lighter gray on hover */
}

/* Dashboard styles */
.dashboard-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #1a1a1a; /* Dark background */
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #2a2a2a; /* Slightly lighter than background */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    text-align: center;
    border: 1px solid #333333; /* Dark border */
}

.stat-card h3 {
    margin: 0 0 10px;
    color: #FF6B00; /* Orange */
}

.stat-card p {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: #ffffff; /* White text */
}

.delivery-list {
    background: #2a2a2a; /* Slightly lighter than background */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    border: 1px solid #333333; /* Dark border */
}

.delivery-item {
    border-bottom: 1px solid #333333; /* Dark border */
    padding: 15px 0;
}

.delivery-item:last-child {
    border-bottom: none;
}

.delivery-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.delivery-actions {
    margin-top: 15px;
}

.cashout-section {
    background: #2a2a2a; /* Slightly lighter than background */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    margin-top: 30px;
    border: 1px solid #333333; /* Dark border */
}

.cashout-form {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 15px;
}

.location-input-container {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
}

.badge-warning {
    background-color: #FF6B00; /* Orange */
    color: #ffffff; /* White text */
}

.badge-info {
    background-color: #17a2b8;
    color: white;
}

.badge-success {
    background-color: #28a745;
    color: white;
}

.products .box-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, 35rem);
   gap: 1.5rem;
   justify-content: center;
   align-items: flex-start;
   backdrop-filter: blur(5px); /* Apply blur effect */
   background: #01010100; /* Semi-transparent background */
   border-radius: 1rem; /* Optional: to give rounded corners to the container */
   padding: 2rem; /* Optional: adjust padding */
   box-shadow: 0 .5rem 2rem rgba(0, 0, 0, 0.1); /* Optional: to enhance the frosted effect */
}

.products .box-container .box {
   padding: 2rem;
   text-align: center;
   border: var(--border);
   background-color: #1a1a1a; /* Dark background */
   box-shadow: var(--box-shadow);
   border-radius: 2rem;
   position: relative;
   backdrop-filter: blur(4px); /* Apply blur to individual boxes */
   border: 1px solid #333333; /* Dark border */
}

.products .box-container .box .price {
   position: absolute;
   top: 1rem;
   left: 1rem;
   padding: 1rem;
   border-radius: 2rem;
   background-color: #FF6B00; /* Orange */
   font-size: 1.8rem;
   color: var(--white);
}

.products .box-container .box .price span {
   font-size: 2.5rem;
   color: var(--white);
   margin: 0 .2rem;
}

.products .box-container .box .fa-eye {
   position: absolute;
   top: 1rem;
   right: 1rem;
   border-radius: .5rem;
   height: 4.5rem;
   line-height: 4.3rem;
   width: 5rem;
   border: var(--border);
   color: var(--black);
   font-size: 2rem;
   background-color: var(--white);
}

.products .box-container .box .fa-eye:hover {
   color: var(--white);
   background-color: var(--black);
}

.products .box-container .box img {
   width: 100%;
   margin-bottom: 1rem;
}

.products .box-container .box .name {
   font-size: 2.5rem;
   color: #ffffff; /* White text */
   padding: 1rem 0;
}

.products .box-container .box .qty {
    margin: .5rem 0;
    border-radius: .5rem;
    padding: 1.2rem 1.4rem;
    font-size: 1.8rem;
    color: var(--black);
    border: var(--border);
    width: 100%;
    background-color: #8080805c; /* Change this to your preferred color */
}

.quick-view .box{
   max-width: 50rem;
   padding:2rem;
   text-align: center;
   border:var(--border);
   background-color: #1a1a1a; /* Dark background */
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
   position: relative;
   margin:0 auto;
}

.quick-view .box img{
   height: 25rem;
   margin-bottom: 1rem;
}

.quick-view .box .price{
   position: absolute;
   top:1rem; left:1rem;
   padding:1rem;
   border-radius: .5rem;
   background-color: #FF6B00; /* Orange */
   font-size: 1.8rem;
   color:var(--white);
}

.quick-view .box .price span{
   font-size: 2.5rem;
   color:var(--white);
   margin:0 .2rem;
}

.quick-view .box .qty{
   margin:.5rem 0;
   border-radius: .5rem;
   padding:1.2rem 1.4rem;
   font-size: 1.8rem;
   color:var(--black);
   border:var(--border);
   width: 100%;
}

.quick-view .box .name{
   font-size: 2rem;
   color:var(--black);
   padding:1rem 0;
}

.quick-view .box .details{
   padding:1rem 0;
   line-height: 2;
   font-size: 1.5rem;
   color:var(--light-color);
}

.p-category{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
   gap:1.5rem;
   justify-content: center;
   align-items: flex-start;
}

.p-category{
   padding-bottom: 0;
}

.p-category a{
   padding:1.5rem;
   text-align: center;
   border:var(--border);
   background-color: #1a1a1a; /* Dark background */
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
   font-size: 2rem;
   text-transform: capitalize;
   color: #ffffff; /* White text */
   border: 1px solid #333333; /* Dark border */
}

.p-category a:hover{
   background-color: #FF6B00; /* Orange on hover */
   color: var(--white);
}

.about .row{
   display: flex;
   flex-wrap: wrap;
   gap:3rem;
   align-items: center;
}

.about .row .box{
   flex:1 1 40rem;
   text-align: center;
}

.about .row .box img{
   margin-bottom: 2rem;
   height: 40rem;
}

.about .row .box h3{
   padding:1rem 0;
   font-size: 2.5rem;
   text-transform: uppercase;
   color: #FF6B00; /* Orange */
}

.about .row .box p{
   line-height: 2;
   font-size: 1.5rem;
   color: #cccccc; /* Light gray text */
   padding:1rem 0;
}

.about .row .box .btn{
   display: inline-block;
   width: auto;
}

.reviews .box-container{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
   gap:1.5rem;
   justify-content: center;
   align-items: flex-start;
}

.reviews .box-container .box{
   padding:2rem;
   text-align: center;
   border:var(--border);
   background-color: #1a1a1a; /* Dark background */
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
   border: 1px solid #333333; /* Dark border */
}

.reviews .box-container .box img{
   height: 10rem;
   width: 10rem;
   border-radius: 50%;
   margin-bottom: 1rem;
   object-fit: cover;
}

.reviews .box-container .box p{
   padding:1rem 0;
   font-size: 1.6rem;
   color: #cccccc; /* Light gray text */
   line-height: 2;
}

.reviews .box-container .box .stars{
   display: inline-block;
   padding:1rem;
   background-color: #2a2a2a; /* Slightly lighter than background */
   border:var(--border);
   border-radius: .5rem;
   margin:.5rem 0;
}

.reviews .box-container .box .stars i{
   font-size: 1.7rem;
   color: #FF6B00; /* Orange */
   margin:0 .3rem;
}

.reviews .box-container .box h3{
   margin-top: 1rem;
   color: #ffffff; /* White text */
   font-size: 2rem;
}

.contact form{
   margin:0 auto;
   max-width: 50rem;
   padding:2rem;
   text-align: center;
   border:var(--border);
   background-color: #1a1a1a; /* Dark background */
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
   padding-top: 1rem;
   border: 1px solid #333333; /* Dark border */
}

.contact form .box{
   width: 100%;
   padding:1.2rem 1.4rem;
   border:var(--border);
   margin:1rem 0;
   background-color: #2a2a2a; /* Slightly lighter than background */
   font-size: 1.8rem;
   color: #ffffff; /* White text */
   border-radius: .5rem;
}

.contact form textarea{
   height: 15rem;
   resize: none;
}

.search-form form{
   display: flex;
   gap:1.5rem;
   align-items: center;
}

.search-form form .box{
   width: 100%;
   padding:1.4rem;
   border:var(--border);
   margin:1rem 0;
   background-color: #1a1a1a; /* Dark background */
   box-shadow: var(--box-shadow);
   font-size: 2rem;
   color: #ffffff; /* White text */
   border-radius: .5rem;
}

.search-form form .btn{
   display: inline-block;
   width: auto;
   margin-top: 0;
}

.wishlist .box-container{
   display: grid;
   grid-template-columns: repeat(auto-fit, 35rem);
   gap:1.5rem;
   justify-content: center;
   align-items: flex-start;
   
}

.wishlist .box-container .box{
   padding:2rem;
   text-align: center;
   border:var(--border);
   background-color: #1a1a1a; /* Dark background */
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
   position: relative;
   backdrop-filter: blur(5px); /* Apply blur effect */
   background: #01010100; /* Semi-transparent background */
   border-radius: 1rem; /* Optional: to give rounded corners to the container */
   padding: 2rem; /* Optional: adjust padding */
   box-shadow: 0 .5rem 2rem rgba(0, 0, 0, 0.1);
   border: 1px solid #333333; /* Dark border */
}

.wishlist .box-container .box .price{
   padding:1rem 0;
   color: #FF6B00; /* Orange */
   font-size: 2.5rem;
}

.wishlist .box-container .box .price span{
   font-size: 2.5rem;
   color:var(--white);
   margin:0 .2rem;
}

.wishlist .box-container .box .fa-eye{
   position: absolute;
   top:1rem; right:1rem;
   border-radius: .5rem;
   height: 4.5rem;
   line-height: 4.3rem;
   width: 5rem;
   border:var(--border);
   color:var(--black);
   font-size: 2rem;
   background-color: var(--white);
}

.wishlist .box-container .box .fa-eye:hover{
   color:var(--white);
   background-color: var(--black);
}

.wishlist .box-container .box .fa-times{
   position: absolute;
   top:1rem; left:1rem;
   border-radius: .5rem;
   height: 4.5rem;
   line-height: 4.3rem;
   width: 5rem;
   color:var(--white);
   font-size: 2rem;
   background-color: #FF6B00; /* Orange */
}

.wishlist .box-container .box .fa-times:hover{
   background-color: var(--black);
}

.wishlist .box-container .box img{
   width: 100%;
   margin-bottom: 1rem;
}

.wishlist .box-container .box .name{
   font-size: 2rem;
   color: #ffffff; /* White text */
   padding-top: 1rem;
}

.wishlist .box-container .box .qty{
   margin:.5rem 0;
   border-radius: .5rem;
   padding:1.2rem 1.4rem;
   font-size: 1.8rem;
   color:var(--black);
   border:var(--border);
   width: 100%;
   background: #e2e2e25c;
}

.wishlist .wishlist-total{
   max-width: 50rem;
   margin: 0 auto;
   margin-top: 2rem;
   padding:2rem;
   text-align: center;
   border:var(--border);
   background-color: #1a1a1a; /* Dark background */
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
   border: 1px solid #333333; /* Dark border */
}

.wishlist .wishlist-total p{
   margin-bottom: 2rem;
   font-size: 2.5rem;
   color: #ffffff; /* White text */
}

.wishlist .wishlist-total p span{
   color: #ffffff;
}

.shopping-cart .box-container{
     display: grid;
   grid-template-columns: repeat(auto-fit, 35rem);
   gap: 1.5rem;
   justify-content: center;
   align-items: flex-start;
   backdrop-filter: blur(5px); /* Apply blur effect */
   background: #01010100; /* Semi-transparent background */
   border-radius: 1rem; /* Optional: to give rounded corners to the container */
   padding: 2rem; /* Optional: adjust padding */
   box-shadow: 0 .5rem 2rem rgba(0, 0, 0, 0.1);
}

.shopping-cart .box-container .box{
    padding: 2rem;
   text-align: center;
   border: var(--border);
   background-color: #1a1a1a; /* Dark background */
   box-shadow: var(--box-shadow);
   border-radius: 2rem;
   position: relative;
   backdrop-filter: blur(4px);
   border: 1px solid #333333; /* Dark border */
}

.shopping-cart .box-container .box .price{
   padding:1rem 0;
   color: #FF6B00; /* Orange */
   font-size: 2.5rem;
}

.shopping-cart .box-container .box .price span{
   font-size: 2.5rem;
   color:var(--white);
   margin:0 .2rem;
}

.shopping-cart .box-container .box .fa-eye{
   position: absolute;
   top:1rem; right:1rem;
   border-radius: .5rem;
   height: 4.5rem;
   line-height: 4.3rem;
   width: 5rem;
   border:var(--border);
   color:var(--black);
   font-size: 2rem;
   background-color: var(--white);
}

.shopping-cart .box-container .box .fa-eye:hover{
   color:var(--white);
   background-color: var(--black);
}

.shopping-cart .box-container .box .fa-times{
   position: absolute;
   top:1rem; left:1rem;
   border-radius: .5rem;
   height: 4.5rem;
   line-height: 4.3rem;
   width: 5rem;
   color:var(--white);
   font-size: 2rem;
   background-color: #FF6B00; /* Orange */
}

.shopping-cart .box-container .box .fa-times:hover{
   background-color: var(--black);
}

.shopping-cart .box-container .box img{
   width: 100%;
   margin-bottom: 1rem;
}

.shopping-cart .box-container .box .name{
   font-size: 2.5rem;
   color: #ffffff; /* White text */
   padding-top: 1rem;
}

.shopping-cart .box-container .box .qty{
   margin-top: 1rem;
   border-radius: .5rem;
   padding:1.2rem 1.4rem;
   font-size: 1.8rem;
   color:var(--black);
   border:var(--border);
   width: 100%;
    background-color: #d3cbcb5c; /* Change this to your preferred color */
}

.shopping-cart .box-container .sub-total{
   margin-top: 2rem;
   font-size: 2rem;
   color: #ffffff; /* White text */
}

.shopping-cart .box-container .sub-total span{
   color: #FF6B00; /* Orange */
}

.shopping-cart .cart-total{
   max-width: 50rem;
   margin: 0 auto;
   margin-top: 2rem;
   padding:2rem;
   text-align: center;
   background-color: #1a1a1a; /* Dark background */
   box-shadow: var(--box-shadow);
   border-radius: 2rem;
   position: relative;
   border: 1px solid #333333; /* Dark border */
}

.shopping-cart .cart-total p{
   margin-bottom: 2rem;
   font-size: 2.5rem;
   color: #ffffff; /* White text */
}

.shopping-cart .cart-total p span{
   color: #ffffff;
}

.display-orders{
   text-align: center;
   padding-bottom: 0;
}

.display-orders p{
   display: inline-block;
   padding:1rem 2rem;
   margin:1rem .5rem;
   font-size: 2rem;
   text-align: center;
   border:var(--border);
   background-color: #1a1a1a; /* Dark background */
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
   color: #ffffff; /* White text */
}

.display-orders p span{
   color: #FF6B00; /* Orange */
}

.display-orders .grand-total{
   margin-top: 2rem;
   font-size: 2.5rem;
   color: #ffffff; /* White text */
}

.display-orders .grand-total span{
   color: #FF6B00; /* Orange */
}

.checkout-orders form{
   padding:2rem;
   border:var(--border);
    background-color: #1a1a1a; /* Dark background */
   box-shadow: var(--box-shadow);
   border-radius: 2rem;
   position: relative;
   backdrop-filter: blur(4px);
   border: 1px solid #333333; /* Dark border */
}

.checkout-orders form h3{
   border-radius: .5rem;
   background-color: #FF6B00; /* Orange */
   color:var(--white);
   padding:1.5rem 1rem;
   text-align: center;
   text-transform: uppercase;
   margin-bottom: 2rem;
   font-size: 2.5rem;
}

.checkout-orders form .flex{
   display: flex;
   flex-wrap: wrap;
   gap:1.5rem;
   justify-content: space-between;
}

.checkout-orders form .flex .inputBox{
   width: 49%;
}

.checkout-orders form .flex .inputBox .box{
   width: 100%;
   border:var(--border);
   border-radius: .5rem;
   font-size: 1.8rem;
   color: #ffffff; /* White text */
   padding:1.2rem 1.4rem;
   margin:1rem 0;
   background-color: #2a2a2a; /* Slightly lighter than background */
}

.checkout-orders form .flex .inputBox span{
   font-size: 1.8rem;
   color: #cccccc; /* Light gray text */
}

.placed-orders .box-container{
   display: flex;
   flex-wrap: wrap;
   gap:1.5rem;
   align-items: flex-start;
}

.placed-orders .box-container .box{
   padding:1rem 2rem;
   flex:1 1 40rem;
   border:var(--border);
   background-color: #1a1a1a; /* Dark background */
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
   border: 1px solid #333333; /* Dark border */
}

.placed-orders .box-container .box p{
   margin:.5rem 0;
   line-height: 1.8;
   font-size: 2rem;
   color: #cccccc; /* Light gray text */
}

.placed-orders .box-container .box p span{
   color: #FF6B00; /* Orange */
}

@media (max-width:768px){

   .home-bg{
      background-position: left;
   }

   .home-bg .home{
      justify-content: center;
      text-align: center;
   }

   .checkout-orders form .flex .inputBox{
      width: 100%;
      
   }

}

@media (max-width:450px){

   .home-category .box-container{
      grid-template-columns: 1fr;
   }

   .products .box-container{
      grid-template-columns: 1fr;
   }

   .quick-view .box img{
      height: auto;
      width: 100%;
   }

   .about .row .box img{
      width: 100%;
      height: auto;
   }   

   .shopping-cart .box-container{
      grid-template-columns: 1fr;
   }

   .wishlist .box-container{
      grid-template-columns: 1fr;
   }

}