/* product-page.css */

.product-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 16px;
}

.product-page h1 {
    font-size: 28px;
    margin-bottom: 24px;
    padding: 10px 0;
    border-bottom: 1px solid #555;
}

/* Layout */
.product-page .container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* LEFT SIDE – ONLY PRODUCT VIEW */
.product-page .left {
    width: 40%;
}

.product-view {
    position: sticky;
    top: 100px;
    background: #111;
    padding: 20px;
    border-radius: 12px;
}

.product-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 16px;
}

.product-view h2 {
    font-size: 22px;
    margin-bottom: 6px;
}

.product-view h3 {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
}

.product-view #price {
    font-size: 24px;
    margin: 12px 0;
}

/* RIGHT SIDE – ALL DESCRIPTION */
.product-page .right {
    width: 60%;
}

.product-description {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
}

.product-description h2 {
    font-size: 22px;
    margin-bottom: 8px;
}

.product-description h3 {
    font-size: 14px;
    color: #aaa;
}

.product-description #price {
    font-size: 26px;
    margin-bottom: 12px;
}

/* TICK ROW */
#tick-div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.tick-image {
    width: 18px;
    height: 18px;
}

/* SECTION BORDERS */
.border {
    border-top: 1px solid #2a2a2a;
    padding-top: 16px;
}

/* BUTTONS */
.product-description button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    background: #1f1f1f;
    color: #fff;
}

.product-description button img {
    width: 18px;
}

.product-description button:first-child {
    background: #ff9800;
    color: #000;
    font-weight: 600;
}

/* Platform Badge */
.platform-badge {
  display: inline-block;
  background: rgba(0, 255, 208, 0.1);
  color: #00ffd0;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(0, 255, 208, 0.3);
  margin: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.platform-display {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 15px 0;
}

.platform-display img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.platform-display span {
  font-size: 0.9rem;
  color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .product-page .container {
        flex-direction: column;
    }

    .product-page .left,
    .product-page .right {
        width: 100%;
    }

    .product-view {
        position: static;
    }
}