/* Y Shapewear - Men's Shapewear Site */
:root {
  --dark: #0d1520;
  --dark2: #16202e;
  --accent: #4ca9b4;
  --accent2: #65bc7b;
  --text: #333;
  --light: #f7f9fa;
  --border: #e5e8eb;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--text); line-height: 1.6; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* Header */
.site-header { background: var(--dark); color: #fff; position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 38px; }
.logo-text { font-weight: 800; letter-spacing: 2px; font-size: 18px; color: #fff; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { color: #cfd8e0; font-size: 15px; font-weight: 500; transition: color .2s; }
.main-nav a:hover, .main-nav a.active { color: var(--accent2); }
.btn-nav { background: var(--accent); color: #fff !important; padding: 9px 20px; border-radius: 4px; font-weight: 600; }

/* Hero */
.hero { background: linear-gradient(135deg, #0d1520 0%, #1a2a3a 55%, #20303f 100%); color: #fff; padding: 90px 0 70px; }
.hero h1 { font-size: 52px; line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: var(--accent2); }
.hero p { font-size: 18px; max-width: 640px; opacity: .85; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 16px; margin-bottom: 50px; }
.btn { display: inline-block; padding: 13px 30px; border-radius: 5px; font-weight: 600; font-size: 15px; transition: all .2s; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #3d97a2; }
.btn-outline { border: 2px solid rgba(255,255,255,.6); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.hero-stats { display: flex; gap: 48px; border-top: 1px solid rgba(255,255,255,.15); padding-top: 30px; }
.hero-stats strong { display: block; font-size: 30px; color: var(--accent2); }
.hero-stats span { font-size: 13px; opacity: .7; }

/* Sections */
.section { padding: 80px 0; }
.section-dark { background: var(--dark2); color: #fff; }
.section-title { font-size: 34px; margin-bottom: 14px; }
.category-title { font-size: 24px; margin: 44px 0 18px; padding-left: 14px; border-left: 4px solid #e8a33d; color: #0d1520; }
.page-banner { background-size: cover; background-position: center; padding: 64px 0; color: #fff; }
.page-banner .section-title, .page-banner .section-sub { color: #fff; }
.page-banner .section-sub { opacity: .9; }
.img-pending { width: 100%; aspect-ratio: 3/4; background: linear-gradient(135deg, #eef1f5, #dfe4ea); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #7a8494; font-size: 14px; letter-spacing: .5px; text-align: center; padding: 12px; }

/* WhatsApp floating button — same style as ybshapewear.com (mystickyelements) */
.mystickyelements-fixed {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 99999;
  animation: waSlideIn .6s ease .8s both;
}
@keyframes waSlideIn { from { transform: translateY(-50%) translateX(100%); opacity: 0; } to { transform: translateY(-50%) translateX(0); opacity: 1; } }
.mystickyelements-lists { list-style: none; margin: 0; padding: 0; }
.mystickyelements-lists > li { display: flex; align-items: center; justify-content: flex-end; margin-bottom: 6px; }
.mystickyelements-social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px;
  background: #26D367;
  border-radius: 25px 0 0 25px;
  cursor: pointer;
  transition: width .3s ease;
}
.mystickyelements-social-icon:hover { width: 54px; }
.mystickyelements-social-icon svg { width: 26px; height: 26px; fill: #fff; }
.mystickyelements-social-icon a { display: inline-flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.mystickyelements-social-text {
  display: inline-flex; align-items: center;
  height: 50px;
  background: #26D367;
  border-radius: 25px 0 0 25px;
  max-width: 0; padding: 0; overflow: hidden; white-space: nowrap;
  transition: max-width .3s ease, padding .3s ease;
}
.mystickyelements-social-text a {
  color: #fff; font-size: 16px; font-weight: 600; text-decoration: none;
  padding: 0 18px; letter-spacing: .3px;
}
.mystickyelements-lists > li:hover .mystickyelements-social-text { max-width: 220px; padding: 0; }
@media (max-width: 768px) {
  .mystickyelements-social-icon { width: 44px; height: 44px; border-radius: 22px 0 0 22px; }
  .mystickyelements-social-icon svg { width: 22px; height: 22px; }
  .mystickyelements-social-text { height: 44px; }
}
.section-sub { font-size: 17px; max-width: 720px; opacity: .75; margin-bottom: 40px; }
.center { text-align: center; margin-top: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 20px; }
.card { background: var(--light); border: 1px solid var(--border); border-radius: 8px; padding: 30px 26px; }
.card h3 { margin-bottom: 12px; font-size: 20px; }
.p-card { text-align: center; }
.p-img { border-radius: 8px; height: 260px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 18px; text-transform: uppercase; letter-spacing: 1px; }
.split { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: center; }
.check-list { list-style: none; margin: 20px 0 28px; }
.check-list li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.oem-box { background: var(--dark); color: #fff; padding: 40px 34px; border-radius: 10px; }
.oem-box h3 { margin-bottom: 14px; color: var(--accent2); }
.oem-box p { margin-bottom: 24px; opacity: .85; }

/* Footer */
.site-footer { background: var(--dark); color: #cfd8e0; padding: 50px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-inner h4 { color: #fff; margin-bottom: 14px; }
.footer-inner a { display: block; padding: 4px 0; opacity: .8; }
.footer-inner a:hover { opacity: 1; color: var(--accent2); }
.copyright { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 20px; font-size: 13px; opacity: .6; }

/* Responsive */
@media (max-width: 900px) {
  .grid-3, .grid-4, .split { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 36px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .main-nav { gap: 16px; font-size: 13px; }
}
@media (max-width: 620px) {
  .grid-3, .grid-4, .split { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 50px; }
}

/* Products page */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin: 30px 0 40px; }
.product-item { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: #fff; position: relative; }
.product-img { height: 220px; }
.product-item h3 { padding: 16px 18px 6px; font-size: 17px; }
.product-item p { padding: 0 18px 16px; font-size: 14px; opacity: .8; }
.tag { position: absolute; top: 12px; right: 12px; background: var(--accent); color: #fff; font-size: 11px; padding: 4px 10px; border-radius: 20px; font-weight: 600; }

/* OEM process */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin: 36px 0; }
.step { background: var(--light); border: 1px solid var(--border); border-radius: 10px; padding: 26px 22px; position: relative; }
.step span { display: inline-flex; width: 36px; height: 36px; background: var(--dark); color: var(--accent2); border-radius: 50%; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 14px; }
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14px; opacity: .8; }
.oem-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 40px 0; }

/* About */
.about-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin: 30px 0; }
.about-block { background: var(--light); border: 1px solid var(--border); border-radius: 10px; padding: 30px; }
.about-block h3 { color: var(--dark); margin-bottom: 12px; }

/* Contact */
.contact-wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 46px; margin-top: 30px; }
.contact-form { background: var(--light); border: 1px solid var(--border); border-radius: 10px; padding: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1px solid #ccc; border-radius: 5px; font-size: 14px; font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-note { margin-top: 14px; font-weight: 600; }
.contact-info h3 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 10px; }
.cta-box { background: var(--dark); color: #fff; border-radius: 10px; padding: 24px; margin-top: 26px; }
.cta-box h4 { color: var(--accent2); margin-bottom: 10px; }

@media (max-width: 900px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .about-grid, .oem-features, .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .products-grid, .process { grid-template-columns: 1fr; }
}

/* Image styles */
.card-img { width: 100%; height: 190px; object-fit: cover; border-radius: 6px; margin-bottom: 16px; }
.p-img { width: 100%; height: 260px; object-fit: cover; border-radius: 8px; }
.p-label { margin-top: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 14px; color: #fff; }
.about-img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-bottom: 16px; }
.product-img { width: 100%; height: 220px; object-fit: cover; display: block; }
