You will not be allowed to compare more than 4 products at a time
View compareSize Chart
<p><meta charset="utf-8"> <meta content="width=device-width, initial-scale=1" name="viewport"></p>
<style>
:root{
--bg:#f3ecdf;
--card:#fffaf1;
--ink:#2e2a22;
--muted:#7a6f5a;
--accent:#4a5a44;
--grid:#d9cfbf;
--ring: rgba(74,90,68,.25);
--radius:20px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
margin:0; font:16px/1.5 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
color:var(--ink); background:radial-gradient(1200px 800px at 10% -10%, #fff, transparent) , var(--bg);
}
.wrap{max-width:1100px;margin:auto;padding:28px}
.brand{display:flex; align-items:center; gap:16px; margin-bottom:18px; flex-wrap:wrap}
.brand img{height:64px;width:auto; filter:drop-shadow(0 2px 4px rgba(0,0,0,.12))}
.brand .title{font-size:24px; letter-spacing:.06em; text-transform:uppercase; color:var(--accent); font-weight:800}
.card{background:var(--card); border:1px solid var(--grid); border-radius:var(--radius); padding:24px; box-shadow:0 20px 40px -24px var(--ring)}
.grid{display:grid; gap:28px}
@media (min-width: 960px){
.grid{grid-template-columns: 1.2fr .8fr}
}
h2{margin:0 0 14px; font-size:28px; letter-spacing:.05em; text-transform:uppercase}
.sub{color:var(--muted); font-size:14px; margin-bottom:16px}
/* Table */
table{width:100%; border-collapse:separate; border-spacing:0; font-size:14px}
thead th{position:sticky; top:0; background:var(--card)}
th, td{padding:12px 14px; text-align:center; border-bottom:1px solid var(--grid);}
th{font-weight:700; color:var(--accent); letter-spacing:.04em}
tbody tr:nth-child(odd){background:linear-gradient(#0000,#0000), #fff4e5}
tbody tr:hover{background:#fff; box-shadow:inset 0 0 0 9999px rgba(74,90,68,.03)}
tbody td:first-child, thead th:first-child{ text-align:left }
thead th{border-bottom:2px solid var(--grid)}
.note{margin-top:10px; color:var(--muted); font-size:12px}
/* Customization column */
.steps{display:grid; gap:14px}
.step{display:grid; grid-template-columns:auto 1fr; gap:12px; align-items:start; padding:10px 12px; border:1px dashed var(--grid); border-radius:12px; background:#fff}
.step strong{display:block; font-size:14px; text-transform:uppercase; letter-spacing:.04em}
.badge{height:26px; min-width:26px; border-radius:8px; display:grid; place-items:center; background:var(--accent); color:#fff; font-weight:700; box-shadow:0 6px 12px -6px var(--ring)}
.jacket{width:100%; height:auto; margin-top:8px}
/* Footer bar */
.bar{margin-top:22px; display:flex; gap:18px; flex-wrap:wrap; align-items:center; color:var(--muted); font-size:13px}
.pill{padding:6px 10px; border-radius:999px; border:1px solid var(--grid); background:#fff}
/* Contact info footer */
.contact{margin-top:24px; font-size:13px; color:var(--muted); text-align:center}
.contact a{color:var(--accent); text-decoration:none; font-weight:600}
/* Responsive Adjustments */
@media (max-width: 940px){
.brand{justify-content:center; text-align:center}
.brand .title{font-size:14px; text-align:center}
h2{font-size:18px; text-align:center}
.grid{grid-template-columns:1fr}
table{font-size:8px}
th,td{padding:6px}
.steps{gap:6px}
.step{grid-template-columns:1fr; text-align:center}
.badge{margin:0 auto}
.bar{justify-content:center; font-size:12px}
}
</style>
<div class="wrap">
<div class="brand">
<img src="logo_PLS-removebg-preview.png" alt="Premium Leather Street logo">
<div class="title">Premium Leather Street</div>
</div>
<div class="card grid">
<section>
<h2>Size Chart</h2>
<div class="sub">Measurements in inches. Garments have ease; if between sizes, consider sizing up.</div>
<div class="table-wrap">
<!-- your size chart table goes here -->
</div>
<p class="note">Tip: Compare a well-fitting jacket laid flat and double the chest/waist to match this chart.</p>
</section>
<aside>
<!-- customization section -->
</aside>
</div>
<div class="contact">
<p>📧 Email: <a href="mailto:support@premiumleatherstreet.com">support@premiumleatherstreet.com</a> | 🌐 Website: <a href="https://www.premiumleatherstreet.com" target="_blank">www.premiumleatherstreet.com</a></p>
</div>
</div>