.header{
      width:cover;
      height:auto;
      align-items: center;
      max-width: auto;
      background-color:rgb(0, 0, 0);
      border-bottom-right-radius: 25px;
      border-bottom-left-radius: 25px;
      display:flex;
      justify-content: space-between;
      margin:5px;
      padding:10px;
      border-bottom:5px solid goldenrod;
      color:white;
      
    }

  .header .logo-text{
    display:flex;
    align-items: center;
    font-size :30px;
    
   }
   
   .logo-text span{
    color:#ffb700;
   }

  nav ul{
    display:flex;
    gap:30px;
    list-style-type: none;
  }
  nav ul a{
    text-decoration: none;
    color:rgb(255, 255, 255);
    transition:0.4s;
  }
  nav ul a:hover{
    background-color:goldenrod;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    padding:10px;
    color:black;
    box-shadow:0 0 15px #d7ca13;
  }

  .login{
    border-radius:30px;
    padding:10px;
    width: 100px;
    background-color:rgb(0, 0, 0);
    display: flex;
    align-items: center;
    font-size: 15px;
    border:2px solid gray;
    text-align: center;
    cursor:pointer;
    transition:all 0.4s ease;
  }
  .text{
    color:white;
    order:1;
    transition: all 0.4s ease;
    margin-left: 2px;
  }
  
  .white-ball{
    width:25px;
    height: 25px;
    background-color:color-mix(in xyz, white 50%, black 30%);
    border-radius: 50%;
    border:1px solid rgb(255, 255, 255);
    box-shadow:0 0 15px #aca519;
    transition:all 0.4s ease;
    order:1;
  }
  .login:hover .text{
    order:1;

  }
  .login:hover .white-ball{
    order:2;
  }
  .button a{
    text-align: center;
  }
  .button{
    display: flex;
    align-items: center;
    gap:10px;
  }
  .button button:hover{
    background-color:rgb(0, 0, 0);
    padding:10px;
    box-shadow:0 0 15px #ffccbc;
  }
  
/* Product Page Styles */
.product-page {
    background-color: #0c0c0c;
    color: white;
    margin: 0;
}

.product-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.product-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Image Section */
.product-visual {
    flex: 1;
}

.image-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #d4af37;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.image-card img {
    width: 100%;
    border-radius: 10px;
}

/* Info Section */
.product-info {
    flex: 1;
}

.breadcrumb {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #d4af37;
    text-decoration: none;
}

.item-name {
    font-size: 3rem;
    margin: 0 0 10px 0;
    color: white;
}

.price {
    font-size: 1.8rem;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 20px;
}

.rating {
    margin-bottom: 25px;
}

.rating span {
    color: #888;
    font-size: 0.9rem;
    margin-left: 10px;
}

.description {
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
}

/* Interaction Controls */
.order-controls {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.quantity {
    display: flex;
    border: 1px solid #444;
    border-radius: 8px;
    overflow: hidden;
}

.quantity button {
    background: #222;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.quantity input {
    width: 50px;
    text-align: center;
    background: #111;
    color: white;
    border: none;
}

.add-to-cart {
    background: #d4af37;
    color: black;
    border: none;
    padding: 0 40px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.add-to-cart:hover {
    background: white;
}

.details-extra {
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

/* Mobile View */
@media (max-width: 768px) {
    .product-layout {
        flex-direction: column;
    }
    .item-name { font-size: 2rem; }
}