@import url('https://fonts.googleapis.com/css2?family=Inclusive+Sans&display=swap');

.content-page { padding-top: 0 !important; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

.products-hero { background: #000; color: #fff; text-align: center; padding: 126px 0 0.75rem; }
.page-title { font-size: 2.4rem; font-weight: 800; }
.page-subtitle { color: #bbb; max-width: 800px; margin: 0.75rem auto 0; line-height: 1.6; }

.products-layout { background: #000; color: #fff; padding: 1.5rem 0 10rem; }
.layout { display: grid; grid-template-columns: 280px 1fr; gap: 1.5rem; align-items: start; }

.sidebar { position: sticky; top: 126px; }
.product-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.product-link { display: flex; align-items: center; gap: 10px; padding: 0.8rem 1rem; background: #111; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; text-decoration: none; transition: border-color .2s ease, transform .2s ease; }
.product-link:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }
.product-link.active { border-color: #fff; box-shadow: 0 8px 20px rgba(255,255,255,0.08); }

/* Product Content Layout */
.product-content-layout { 
    display: grid; 
    grid-template-columns: 1fr 400px; 
    gap: 2rem; 
    margin-bottom: 2rem;
    background: #111; 
    border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 10px; 
    padding: 2rem;
}

.product-left { 
    display: flex; 
    flex-direction: column; 
    gap: 1.5rem; 
}

.product-title { 
    font-size: 2.2rem; 
    font-weight: 700; 
    margin: 0; 
    color: #fff; 
    line-height: 1.2;
}

.product-description { 
    color: #ddd; 
    line-height: 1.8; 
    font-size: 1.1rem;
    text-align: justify;
}

.product-right { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.product-image-container { 
    width: 350px; 
    height: 350px; 
    border-radius: 10px; 
    overflow: hidden; 
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-image { 
    width: 100%; 
    height: 100%; 
    display: block; 
    object-fit: cover;
}

.product-image-placeholder { 
    width: 350px; 
    height: 350px; 
    background: #0b0b0b; 
    border: 2px dashed rgba(255,255,255,0.2); 
    border-radius: 10px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    color: #666;
}

.product-image-placeholder i { 
    font-size: 3rem; 
    margin-bottom: 1rem; 
    opacity: 0.5; 
}

.product-image-placeholder p { 
    margin: 0; 
    font-size: 1rem; 
}

/* Webview Section */
.webview-section { 
    background: #111; 
    border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 10px; 
    overflow: hidden; 
}

.webview-title { 
    padding: 1.5rem; 
    margin: 0; 
    font-size: 1.5rem; 
    font-weight: 600; 
    color: #fff; 
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.webview-wrapper { background: #fff; }
.webview-content { height: 600px; }
.webview-iframe { 
    width: 100%; 
    height: 100%; 
    border: none; 
    background: #fff;
}

.no-products { 
    color: #bbb; 
    background: #111; 
    border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 10px; 
    padding: 2rem; 
    text-align: center; 
}
.no-products h3 { 
    color: #fff; 
    margin: 0 0 0.5rem 0; 
    font-size: 1.3rem; 
}
.no-products p { 
    margin: 0; 
    color: #999; 
}

@media (max-width: 1200px) { 
    .webview-content { height: 500px; } 
}
@media (max-width: 1024px) {
  .layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .webview-content { height: 450px; }
  .product-content-layout { 
      grid-template-columns: 1fr; 
      gap: 1.5rem;
  }
  .product-right { 
      justify-content: center; 
      margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .products-hero { padding-top: 68px; }
  .webview-content { height: 400px; }
  .product-content-layout { 
      padding: 1.5rem; 
      gap: 1.5rem;
  }
  .product-title { font-size: 1.8rem; }
  .product-description { font-size: 1rem; }
  .product-image-container { 
      width: 300px; 
      height: 300px; 
  }
  .product-image-placeholder { 
      width: 300px; 
      height: 300px; 
  }
}
@media (max-width: 480px) { 
    .webview-content { height: 350px; }
    .product-content-layout { 
        padding: 1rem; 
        gap: 1rem;
    }
    .product-title { font-size: 1.6rem; }
    .product-description { font-size: 0.95rem; }
    .product-image-container { 
        width: 250px; 
        height: 250px; 
    }
    .product-image-placeholder { 
        width: 250px; 
        height: 250px; 
    }
}

.products-page .site-footer { margin-top: 0; }


