*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    list-style: none;
}


nav{
    padding: 20px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
  width: 120px;              /* controls size */
  height: 120px;
  border-radius: 50%;       /* makes it circle */
  border: 3px solid #bc9667; /* gold border */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4); /* subtle dark bg */
}

.logo:hover {
  transform: scale(1.05);
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(188,150,103,0.6);
}


.logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  border-radius: 50%;
}


nav ul{
    display: flex;
}

nav ul li{
    padding: 12px 24px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    transition: 0.3s;
    cursor: pointer;
}

nav ul li:hover{
    background: #bc9667;
}

.icons{
    display: flex;
    align-items: center;
    gap: 20px;
}

.icons i{
    font-size: 24px;
}

/* main section */
main{
    display: flex;
    padding: 0 5%;
    align-items: center;
    justify-content: space-between;
}

.left-section{
    width: 50%;
}

.left-section h1{
    font-size: 68px;
    font-weight: 800;
    color: #bc9667;
    line-height: 1.2;
}

.left-section p{
    font-size: 19px;
    line-height: 28px;
    padding: 22px 0;
}

button{
    padding: 14px 38px;
    background: #bc9667;
    color: #edeae3;
    font-weight: 600;
    cursor: pointer;
    font-style: 17px;
    border-radius: 8px;
    transition: 0.3s;
    font-size: 16px;
}

button:hover{
    background: #9a7c55;
}

.right-section{
    width: 50%;
}

.right-section img{
    width: 100%;
    height: 420px;
    object-fit: contain;
}

.menuIcon{
    display: none !important;
}

.closeIcon{
    display: none !important;
}

@media (max-width: 780px) {
    nav ul{
        position: fixed;
        flex-direction: column;
        top: 0;
        right: -200px;
        bottom: 0;
        background: #edeae3;
        color: black;
        padding: 20px;
        width: 200px;
        gap: 10px;
        align-items: start;
        padding-top: 60px;
        transition: right 0.3s ease;
    }
    nav ul li{
        display: block;
        padding: 0;
        padding-block: 5px;
        font-size: 17px;
        letter-spacing: 0.5px;
    }
    nav ul li:hover{
        background: transparent;
        color: #bc9667;
    }
    .menuIcon{
        display: block !important;
    }
    .closeIcon{
        display: block !important;
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 24px;
        cursor: pointer;
    }

    main{
        flex-direction: column-reverse;
    }

    .left-section,.right-section{
        width: 100%;
    }

    .left-section{
        padding-bottom: 40px;
    }

    .left-section h1{
        font-size: 40px;
    }

    .left-section p{
        font-size: 15px;
    }

    .right-section img{
        height: 250px;
    }
}
nav ul li a{
    color: inherit;
    text-decoration: none;
}
#searchInput{
  padding: 6px 10px;
  border-radius: 6px;
  border: none;
  outline: none;
}
.dashboard{
  display: flex;
  min-height: 100vh;
}

.sidebar{
  width: 220px;
  background: #111;
  padding: 20px;
}

.sidebar button{
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  cursor: pointer;
}

body {
  min-height: 100vh;
  background: url("images/bg.png") no-repeat center center fixed;
  background-size: cover;
  color: white;
}

.section {
  display: none;
  padding: 40px;
}

.section.active {
  display: block;
}

.section {
  display: none;
  padding: 40px;
  background: transparent; /* IMPORTANT */
}

.section.active {
  display: block;
}
.dashboard-body{
  min-height: 100vh;
  background: url("images/bg.png") no-repeat center center fixed;
  background-size: cover;
  color: white;
}

.dashboard-nav{
  display: flex;
  gap: 15px;
  padding: 20px;
}

.dashboard-nav button{
  padding: 10px 20px;
}

.section{
  display: none;
  padding: 40px;
}

.section.active{
  display: block;
}

.product-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.product{
  background: rgba(0,0,0,0.6);
  padding: 15px;
  border-radius: 10px;
}
.product-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.product{
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
.customers-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.customer-card{
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.customer-card h3{
  color: #bc9667;
  margin-bottom: 5px;
}

.customer-card .stars{
  color: gold;
  margin-bottom: 10px;
}

.customer-card p{
  font-size: 14px;
  line-height: 1.4;
}
.customers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.customer-card {
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.customer-card h3 {
  color: #bc9667;
  margin-bottom: 8px;
}
.products-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-title {
  text-align: center;
  font-size: 52px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #c9a26a;
  margin-bottom: 90px;
}

.category {
  margin-bottom: 80px;
}

.category-title {
  font-size: 32px;
  color: #c9a26a;
  margin-bottom: 30px;
  text-align: left;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
  justify-items: start;
}

.product-card {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.product-card h3 {
  margin-bottom: 10px;
}

.product-card p {
  margin-bottom: 15px;
}

section h1{
    font-size: 42px;
    margin-bottom: 20px;
}

.page-content{
  padding: 60px 5%;
}

.page-title{
  font-size: 42px;
  margin-bottom: 40px;
}

.customers-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.customer-card{
  background: rgba(0,0,0,0.6);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #bc9667;
}

.customer-card h3{
  margin-bottom: 10px;
  color: #bc9667;
}

.customer-card span{
  font-size: 18px;
}

/* ===== CUSTOMERS PAGE ===== */

.customers-page{
  padding: 60px 5%;
  color: white;
}

.page-title{
  font-size: 48px;
  margin-bottom: 40px;
  color: #bc9667;
}

.reviews-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.review-card{
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 10px;
}

.review-card h3{
  color: #bc9667;
  margin-bottom: 10px;
}

.review-form{
  max-width: 500px;
  background: rgba(0,0,0,0.7);
  padding: 30px;
  border-radius: 10px;
}

.review-form h2{
  margin-bottom: 20px;
}

.review-form input,
.review-form textarea{
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: none;
  outline: none;
}

.review-form textarea{
  min-height: 100px;
  resize: none;
}

/* ABOUT US SECTION */
.about-section{
  padding: 80px 5%;
  color: white;
}

.about-section h1{
  font-size: 48px;
  color: #bc9667;
  margin-bottom: 20px;
}

.about-intro{
  font-size: 20px;
  max-width: 700px;
  margin-bottom: 40px;
}

.about-content{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.about-box{
  background: rgba(0,0,0,0.55);
  padding: 25px;
  border-radius: 12px;
}

.about-box h3{
  color: #bc9667;
  margin-bottom: 10px;
  font-size: 22px;
}

.about-box p{
  font-size: 16px;
  line-height: 1.6;
}

.products-page {
  padding: 40px 5%;
}

.page-title {
  font-size: 42px;
  margin-bottom: 30px;
}

.category-title {
  font-size: 28px;
  margin: 40px 0 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.product-card {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 16px;
  margin-bottom: 12px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.product-card {
  background: rgba(0, 0, 0, 0.75);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.product-card p {
  font-size: 18px;
  margin-bottom: 14px;
}

.product-card button {
  background: #bc9667;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.product-card button:hover {
  background: #9a7c55;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Toast notification */
#toast {
  position: fixed;
  left: 20px;
  bottom: 30px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s ease;
  z-index: 9999;
}

/* Show state */
#toast.show {
  opacity: 1;
  transform: translateX(0);
}

.cart-icon {
  position: relative;
  font-size: 26px;
  cursor: pointer;
}

#cartCount {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #bc9667;
  color: white;
  font-size: 12px;
  padding: 3px 7px;
  border-radius: 50%;
  font-weight: bold;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(0,0,0,0.6);
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
}

.cart-item img {
  width: 60px;
}

.cart-item button {
  padding: 6px 10px;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  height: 100vh;
  background: #1c1c1c;
  color: white;
  z-index: 10000;
  padding: 20px;
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  right: 0;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: none;
}

.cart-overlay.show {
  display: block;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.cart-header button {
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
}

#cartItems {
  flex: 1;
  overflow-y: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 10px;
  margin-bottom: 15px;
  align-items: center;
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.cart-item button {
  background: #bc9667;
  border: none;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
}

.cart-footer {
  border-top: 1px solid #444;
  padding-top: 15px;
}

.checkout-btn {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  font-weight: bold;
}

.admin-order-card {
  background: #111;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.admin-order-card h3 {
  margin-bottom: 6px;
  color: #c9a36a;
}

.admin-order-card ul {
  margin-top: 10px;
  padding-left: 20px;
}

.admin-order-card select {
  margin: 8px 0;
  padding: 6px;
}
.admin-layout{
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  padding: 20px;
}

.admin-left, .admin-right{
  min-height: 80vh;
}

.admin-panel{
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(188,150,103,0.25);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

.admin-panel h3{
  margin-bottom: 12px;
  color: #bc9667;
}

.admin-order-card{
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(188,150,103,0.25);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

.admin-order-top{
  display:flex;
  justify-content: space-between;
  align-items:center;
  margin-bottom: 10px;
}

.admin-order-card h3{
  color:#bc9667;
  margin:0;
}

.admin-total{
  font-weight: 800;
}

.admin-order-meta{
  display:flex;
  gap: 10px;
  align-items:center;
  margin: 10px 0 12px;
}

.admin-order-card select{
  padding: 6px 10px;
  border-radius: 8px;
  border: none;
  outline: none;
}

.admin-items{
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 10px;
}

.admin-item-row{
  display:flex;
  justify-content: space-between;
  padding: 4px 0;
}

.admin-timeline{
  margin-top: 12px;
}

.admin-timeline h4{
  margin: 10px 0 8px;
  color: #bc9667;
}

.admin-timeline ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.admin-timeline li{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 6px 0;
}

.admin-timeline .dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bc9667;
  display:inline-block;
}

.muted{
  opacity: 0.7;
  font-size: 12px;
}

.social-section {
  text-align: center;
  margin: 60px 0;
}

.social-section h3 {
  color: #c8a46e;
  margin-bottom: 20px;
  font-size: 24px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.social-links img {
  width: 36px;
  height: 36px;
  filter: brightness(0.9);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-links a:hover img {
  transform: scale(1.15);
  filter: brightness(1.2);
}
