body {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
   background: #080808;
   color: #fff;
}

/* Breadcrumbs */
.breadcrumbs {
   padding: clamp(6rem, 10vh, 8rem) clamp(1.5rem, 5vw, 5rem) 2rem;
   font-family: "DM Sans", sans-serif;
   font-size: 0.75rem;
   letter-spacing: 0.1em;
   color: #64748b;
   text-transform: uppercase;
}

.breadcrumbs a {
   color: #c9a84c;
   text-decoration: none;
   transition: color 0.3s;
}

.breadcrumbs a:hover {
   color: #fff;
}

.breadcrumbs span {
   margin: 0 0.5rem;
}

/* Product Wrapper */
.pd-wrapper {
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 clamp(1.5rem, 5vw, 5rem) 6rem;
   display: grid;
   grid-template-columns: 1fr;
   gap: 4rem;
}

@media (min-width: 900px) {
   .pd-wrapper {
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
   }
}

/* Gallery Styling */
.gallery-main {
   background: #ffffff;
   border-radius: 12px;
   padding: 3rem;
   display: flex;
   justify-content: center;
   align-items: center;
   aspect-ratio: 1;
   margin-bottom: 1.5rem;
   position: relative;
   overflow: hidden;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
   border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-main img {
   max-width: 100%;
   max-height: 100%;
   object-fit: contain;
   mix-blend-mode: multiply;
   transition:
      transform 0.4s ease,
      opacity 0.3s ease;
}

.gallery-main:hover img {
   transform: scale(1.05);
}

.gallery-thumbs {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 1rem;
}

.thumb-wrap {
   background: #ffffff;
   border-radius: 8px;
   padding: 0.5rem;
   aspect-ratio: 1;
   display: flex;
   justify-content: center;
   align-items: center;
   cursor: pointer;
   border: 2px solid transparent;
   transition: all 0.3s;
   opacity: 0.7;
   overflow: hidden;
}

.thumb-wrap:hover,
.thumb-wrap.active {
   border-color: #c9a84c;
   opacity: 1;
}

.thumb-wrap img {
   max-width: 100%;
   max-height: 100%;
   object-fit: contain;
   mix-blend-mode: multiply;
   transition: transform 0.3s;
}

.thumb-wrap:hover img {
   transform: scale(1.1);
}

/* Info Form */
.pd-info {
   font-family: "DM Sans", sans-serif;
}

.pd-cat {
   font-size: 0.7rem;
   letter-spacing: 0.2em;
   color: #c9a84c;
   text-transform: uppercase;
   margin-bottom: 1rem;
   font-weight: 600;
}

.pd-title {
   font-family: "Bebas Neue", sans-serif;
   font-size: clamp(3rem, 6vw, 4.5rem);
   line-height: 0.9;
   letter-spacing: 0.04em;
   color: #fff;
   margin-bottom: 1rem;
}

.pd-price {
   font-size: 1.8rem;
   font-weight: 400;
   color: #ddd5c0;
   margin-bottom: 2rem;
   display: flex;
   align-items: center;
   gap: 1rem;
}

.pd-price strike {
   font-size: 1.2rem;
   color: #64748b;
}

.pd-desc {
   font-size: 0.95rem;
   line-height: 1.8;
   color: #94a3b8;
   margin-bottom: 2.5rem;
}

.pd-features {
   list-style: none;
   padding: 0;
   margin: 0 0 3rem;
}

.pd-features li {
   display: flex;
   align-items: center;
   gap: 0.75rem;
   font-size: 0.9rem;
   color: #cbd5e1;
   margin-bottom: 0.8rem;
}

.pd-features li::before {
   content: "✓";
   color: #c9a84c;
   font-weight: bold;
   font-size: 1.2rem;
}

/* Cart actions */
.cart-actions {
   display: flex;
   gap: 1rem;
   margin-bottom: 3rem;
   flex-wrap: wrap;
}

.qty-box {
   display: flex;
   align-items: center;
   border: 1px solid rgba(201, 168, 76, 0.2);
   border-radius: 4px;
   background: transparent;
   overflow: hidden;
}

.qty-btn {
   background: transparent;
   border: none;
   color: #fff;
   padding: 0 1.2rem;
   height: 3.5rem;
   font-size: 1.2rem;
   cursor: pointer;
   transition: background 0.2s;
}

.qty-btn:hover {
   background: rgba(201, 168, 76, 0.1);
}

.qty-input {
   width: 3rem;
   background: transparent;
   border: none;
   color: #fff;
   text-align: center;
   font-size: 1.1rem;
   font-family: inherit;
   outline: none;
}

.add-to-cart {
   flex: 1;
   background: #c9a84c;
   color: #000;
   border: none;
   border-radius: 4px;
   font-family: "Bebas Neue", sans-serif;
   font-size: 1.4rem;
   letter-spacing: 0.1em;
   cursor: pointer;
   transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 0.75rem;
   text-decoration: none;
}

.add-to-cart:hover {
   background: #fff;
   transform: translateY(-2px);
   box-shadow: 0 10px 20px rgba(201, 168, 76, 0.3);
}

/* Accordion details */
.accordion {
   border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.acc-item {
   border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.acc-head {
   width: 100%;
   padding: 1.5rem 0;
   background: transparent;
   border: none;
   color: #fff;
   font-family: "DM Sans", sans-serif;
   font-size: 1.05rem;
   font-weight: 500;
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
   text-align: left;
}

.acc-head span {
   color: #c9a84c;
   font-size: 1.5rem;
   transition: transform 0.3s;
}

.acc-head.active span {
   transform: rotate(45deg);
}

.acc-body {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.4s ease;
   font-size: 0.9rem;
   color: #94a3b8;
   line-height: 1.7;
}

.acc-body p {
   padding-bottom: 1.5rem;
}
