/* screen-en-ocean — Coastal Ocean Professional */
:root {
  --soc-ocean: #0B3D45;
  --soc-teal: #0891B2;
  --soc-teal-light: #22D3EE;
  --soc-sky: #F0F9FF;
  --soc-sand: #FFFBEB;
  --soc-coral: #F97316;
  --soc-white: #ffffff;
  --soc-text: #134E4A;
  --soc-muted: #64748B;
  --soc-shadow: 0 8px 32px rgba(11, 61, 69, 0.1);
  --soc-shadow-lg: 0 20px 50px rgba(11, 61, 69, 0.14);
  --soc-radius: 12px;
  --soc-font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --soc-heading: 'Fraunces', Georgia, serif;
  --pb-active: #0891B2;
}

*, *::before, *::after { box-sizing: border-box; }

.soc-theme {
  margin: 0;
  font-family: var(--soc-font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--soc-text);
  background: var(--soc-white);
  -webkit-font-smoothing: antialiased;
}

.soc-theme img { max-width: 100%; height: auto; display: block; }
.soc-theme a { color: var(--soc-teal); text-decoration: none; transition: color 0.2s; }
.soc-theme a:hover { color: var(--soc-ocean); }

.soc-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.soc-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--soc-white);
  box-shadow: 0 2px 16px rgba(11, 61, 69, 0.06);
}

.soc-header-bar {
  background: var(--soc-ocean);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  text-align: center;
  padding: 6px 16px;
  letter-spacing: 0.04em;
}

.soc-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.soc-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--soc-ocean);
  text-decoration: none;
}

.soc-logo img { height: 44px; width: auto; }
.soc-logo-text {
  font-family: var(--soc-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--soc-ocean);
}

.soc-nav {
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.soc-nav li a {
  display: block;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 14px;
  color: var(--soc-ocean);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.soc-nav li a:hover {
  color: var(--soc-teal);
  border-bottom-color: var(--soc-teal);
}

.soc-nav-toggle {
  display: none;
  background: var(--soc-sky);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: var(--soc-radius);
  color: var(--soc-ocean);
  font-size: 18px;
  cursor: pointer;
  margin-left: auto;
}

/* ── Hero ── */
.soc-hero {
  position: relative;
  overflow: hidden;
  background: var(--soc-ocean);
}

.soc-hero .swiper-container {
  width: 100%;
  height: clamp(420px, 58vw, 640px);
}

.soc-hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.soc-hero .swiper-slide a { display: block; height: 100%; }

.soc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11,61,69,0.92) 0%, rgba(11,61,69,0.55) 45%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.soc-hero .swiper-pagination {
  bottom: 28px !important;
  text-align: right;
  padding-right: 32px;
  z-index: 3;
}

.soc-hero .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.45);
  opacity: 1;
}

.soc-hero .swiper-pagination-bullet-active {
  background: var(--soc-coral);
  width: 24px;
  border-radius: 999px;
}

.soc-hero-caption {
  position: absolute;
  bottom: clamp(48px, 8vw, 80px);
  left: clamp(24px, 6vw, 80px);
  z-index: 2;
  max-width: min(560px, 90%);
  color: #fff;
  pointer-events: none;
}

.soc-hero-caption .soc-btn { pointer-events: auto; }

.soc-hero-caption h1 {
  font-family: var(--soc-heading);
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 600;
  margin: 10px 0 14px;
  line-height: 1.12;
}

.soc-hero-caption p {
  font-size: clamp(15px, 2vw, 18px);
  margin-bottom: 28px;
  opacity: 0.92;
  line-height: 1.6;
}

/* ── Shared UI ── */
.soc-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--soc-teal);
}

.soc-section {
  padding: 72px 0;
}

.soc-section-sky { background: var(--soc-sky); }
.soc-section-sand { background: var(--soc-sand); }

.soc-section-head {
  text-align: center;
  margin-bottom: 48px;
}

.soc-section-head h2 {
  font-family: var(--soc-heading);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  color: var(--soc-ocean);
  margin: 8px 0 0;
}

.soc-section-head .soc-eyebrow::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--soc-coral);
  margin: 14px auto 0;
}

.soc-section-foot {
  text-align: center;
  margin-top: 40px;
}

.soc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--soc-font);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--soc-coral);
  border: none;
  border-radius: var(--soc-radius);
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
}

.soc-btn:hover {
  background: #ea580c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.soc-btn-outline {
  background: transparent;
  color: var(--soc-teal);
  border: 2px solid var(--soc-teal);
  box-shadow: none;
}

.soc-btn-outline:hover {
  background: var(--soc-teal);
  color: #fff;
}

.soc-btn-light {
  background: #fff;
  color: var(--soc-ocean);
  box-shadow: var(--soc-shadow);
}

.soc-btn-light:hover {
  background: var(--soc-sky);
  color: var(--soc-ocean);
}

.soc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--soc-teal);
}

.soc-link:hover { color: var(--soc-coral); }

/* ── Products: bento grid ── */
.soc-product-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.soc-product-card {
  display: flex;
  flex-direction: column;
  background: var(--soc-white);
  border-radius: var(--soc-radius);
  overflow: hidden;
  box-shadow: var(--soc-shadow);
  border: 1px solid rgba(8, 145, 178, 0.12);
  transition: transform 0.3s, box-shadow 0.3s;
  color: inherit;
  opacity: 0;
  transform: translateY(20px);
}

.soc-product-card.soc-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s;
}

.soc-product-card:first-child {
  grid-column: span 2;
  grid-row: span 1;
  flex-direction: row;
}

.soc-product-card:first-child .soc-product-img {
  flex: 0 0 50%;
  aspect-ratio: auto;
  min-height: 240px;
}

.soc-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--soc-shadow-lg);
}

.soc-product-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--soc-sky);
}

.soc-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.soc-product-card:hover .soc-product-img img { transform: scale(1.05); }

.soc-product-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.soc-product-body h3 {
  font-family: var(--soc-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--soc-ocean);
  margin: 0 0 10px;
}

.soc-product-body p {
  font-size: 14px;
  color: var(--soc-muted);
  margin: 0 0 16px;
  flex: 1;
}

/* ── News: timeline ── */
.soc-news-timeline {
  position: relative;
  padding-left: 32px;
}

.soc-news-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--soc-teal), var(--soc-teal-light));
}

.soc-news-item {
  position: relative;
  padding: 0 0 36px 24px;
  opacity: 0;
  transform: translateX(-12px);
}

.soc-news-item.soc-visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.soc-news-item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--soc-coral);
  border: 3px solid var(--soc-white);
  box-shadow: 0 0 0 2px var(--soc-teal);
}

.soc-news-item time {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--soc-teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.soc-news-item h3 {
  font-family: var(--soc-heading);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
}

.soc-news-item h3 a { color: var(--soc-ocean); }
.soc-news-item h3 a:hover { color: var(--soc-teal); }

.soc-news-item p {
  font-size: 14px;
  color: var(--soc-muted);
  margin: 0 0 12px;
}

/* ── About band ── */
.soc-about-band {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--soc-ocean) 0%, #0E7490 100%);
  color: #fff;
}

.soc-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  opacity: 0;
  transform: translateY(24px);
}

.soc-about-grid.soc-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.soc-about-copy .soc-eyebrow { color: var(--soc-teal-light); }
.soc-about-copy h2 {
  font-family: var(--soc-heading);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 600;
  margin: 10px 0 16px;
}

.soc-about-text {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 28px;
  line-height: 1.75;
}

.soc-about-image {
  position: relative;
}

.soc-about-image img {
  border-radius: var(--soc-radius);
  box-shadow: var(--soc-shadow-lg);
  border: 4px solid rgba(255,255,255,0.15);
}

.soc-about-image::after {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 2px solid var(--soc-coral);
  border-radius: var(--soc-radius);
  z-index: -1;
}

/* ── Advantages grid ── */
.soc-adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.soc-adv-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--soc-white);
  border-radius: var(--soc-radius);
  box-shadow: var(--soc-shadow);
  border-top: 4px solid var(--soc-teal);
  opacity: 0;
  transform: translateY(16px);
}

.soc-adv-card.soc-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.soc-adv-card img,
.soc-adv-card .soc-adv-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.soc-adv-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--soc-teal);
  background: var(--soc-sky);
  border-radius: 50%;
}

.soc-adv-card h4,
.soc-adv-card strong {
  font-family: var(--soc-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--soc-ocean);
  margin: 0 0 8px;
  display: block;
}

.soc-adv-card p {
  font-size: 13px;
  color: var(--soc-muted);
  margin: 0;
}

/* ── CTA band ── */
.soc-cta-band {
  padding: 64px 0;
  background: var(--soc-sand);
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
}

.soc-cta-band.soc-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.soc-cta-band h2 {
  font-family: var(--soc-heading);
  font-size: clamp(24px, 4vw, 34px);
  color: var(--soc-ocean);
  margin: 0 0 12px;
}

.soc-cta-band p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--soc-muted);
}

/* ── Page head ── */
.soc-page-head {
  padding: 48px 0 40px;
  background: linear-gradient(180deg, var(--soc-sky) 0%, var(--soc-white) 100%);
  border-bottom: 1px solid rgba(8, 145, 178, 0.12);
}

.soc-page-head h1 {
  font-family: var(--soc-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--soc-ocean);
  margin: 12px 0 0;
}

.soc-subtitle {
  color: var(--soc-muted);
  margin-top: 10px;
  font-size: 16px;
}

.soc-breadcrumb {
  font-size: 13px;
  color: var(--soc-muted);
}

.soc-breadcrumb a { color: var(--soc-teal); }

/* ── Inner pages ── */
.soc-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.soc-catalog-card {
  background: var(--soc-white);
  border-radius: var(--soc-radius);
  overflow: hidden;
  box-shadow: var(--soc-shadow);
  border: 1px solid rgba(8, 145, 178, 0.1);
}

.soc-catalog-img {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.soc-catalog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.soc-catalog-card:hover .soc-catalog-img img { transform: scale(1.05); }

.soc-catalog-body {
  padding: 22px;
}

.soc-catalog-body h3 {
  font-family: var(--soc-heading);
  font-size: 17px;
  margin: 0 0 10px;
}

.soc-catalog-body h3 a { color: var(--soc-ocean); }

.soc-catalog-body p {
  font-size: 14px;
  color: var(--soc-muted);
  margin: 0 0 14px;
}

.soc-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.soc-category-tabs a {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--soc-ocean);
  background: var(--soc-sky);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.soc-category-tabs a:hover,
.soc-category-tabs a.active {
  background: var(--soc-teal);
  color: #fff;
}

.soc-news-list { max-width: 800px; margin: 0 auto; }

.soc-news-list-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(8, 145, 178, 0.12);
}

.soc-news-list-item time {
  font-size: 12px;
  font-weight: 700;
  color: var(--soc-teal);
}

.soc-news-list-item h3 {
  font-family: var(--soc-heading);
  font-size: 20px;
  margin: 8px 0 10px;
}

.soc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.soc-detail-gallery img {
  border-radius: var(--soc-radius);
  box-shadow: var(--soc-shadow);
}

.soc-content { line-height: 1.8; color: var(--soc-text); }
.soc-content img { border-radius: var(--soc-radius); margin: 16px 0; }

.soc-detail-cta { margin-top: 28px; }

.soc-story-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.soc-story-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.soc-story-body .content { line-height: 1.85; }

.soc-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.soc-value-card {
  padding: 28px;
  background: var(--soc-white);
  border-radius: var(--soc-radius);
  box-shadow: var(--soc-shadow);
  border-left: 4px solid var(--soc-teal);
}

.soc-value-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  object-fit: contain;
}

.soc-value-card h4 {
  font-family: var(--soc-heading);
  font-size: 18px;
  margin: 0 0 10px;
}

/* ── Contact ── */
.soc-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.soc-contact-info {
  padding: 48px 40px;
  background: var(--soc-ocean);
  color: #fff;
  min-width: 0;
}

.soc-contact-info h2 {
  font-family: var(--soc-heading);
  font-size: 26px;
  margin: 0 0 12px;
}

.soc-contact-info > p {
  opacity: 0.88;
  margin-bottom: 28px;
}

.soc-contact-line {
  margin-bottom: 20px;
}

.soc-contact-line label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--soc-teal-light);
  margin-bottom: 6px;
}

.soc-contact-line p {
  margin: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.soc-contact-line a { color: #fff; }
.soc-contact-line a:hover { color: var(--soc-teal-light); }

.soc-contact-qr img {
  max-width: 120px;
  border-radius: 8px;
  margin-top: 8px;
}

.soc-contact-form {
  padding: 48px 40px;
  background: var(--soc-white);
  min-width: 0;
}

.soc-contact-form h3 {
  font-family: var(--soc-heading);
  font-size: 22px;
  color: var(--soc-ocean);
  margin: 0 0 8px;
}

.soc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.soc-field { margin-bottom: 18px; }

.soc-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--soc-ocean);
  margin-bottom: 6px;
}

.soc-field input,
.soc-field textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--soc-font);
  font-size: 14px;
  border: 1px solid rgba(8, 145, 178, 0.25);
  border-radius: var(--soc-radius);
  background: var(--soc-sky);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.soc-field input:focus,
.soc-field textarea:focus {
  outline: none;
  border-color: var(--soc-teal);
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.15);
}

.soc-field textarea { min-height: 120px; resize: vertical; }

.soc-code-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.soc-code-row img.codeimg {
  height: 44px;
  border-radius: 6px;
  cursor: pointer;
}

/* ── Message / Search ── */
.soc-message-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 0 64px;
}

.soc-form-title {
  font-family: var(--soc-heading);
  font-size: 24px;
  color: var(--soc-ocean);
  margin: 0 0 8px;
}

.soc-form-sub {
  color: var(--soc-muted);
  margin-bottom: 28px;
}

.soc-message-list { margin-bottom: 48px; }

.soc-message-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(8, 145, 178, 0.12);
}

.soc-message-reply {
  margin-top: 12px;
  padding: 14px;
  background: var(--soc-sky);
  border-radius: var(--soc-radius);
}

.soc-search-form {
  display: flex;
  gap: 0;
  max-width: 560px;
  margin: 0 auto 32px;
}

.soc-search-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(8, 145, 178, 0.2);
  border-right: none;
  border-radius: var(--soc-radius) 0 0 var(--soc-radius);
  font-family: var(--soc-font);
  font-size: 15px;
}

.soc-search-form button {
  padding: 0 24px;
  background: var(--soc-teal);
  color: #fff;
  border: none;
  border-radius: 0 var(--soc-radius) var(--soc-radius) 0;
  cursor: pointer;
  font-size: 16px;
}

.soc-search-count {
  text-align: center;
  color: var(--soc-muted);
  margin-bottom: 24px;
}

.soc-search-result {
  padding: 24px 0;
  border-bottom: 1px solid rgba(8, 145, 178, 0.1);
}

.soc-search-date {
  font-size: 13px;
  color: var(--soc-teal);
  margin: 6px 0 10px;
}

/* ── Footer ── */
.soc-footer {
  background: var(--soc-ocean);
  color: rgba(255,255,255,0.85);
}

.soc-footer-body { padding: 56px 0 24px; }

.soc-footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.soc-footer-brand img { height: 40px; margin-bottom: 12px; }
.soc-footer-tagline { font-size: 14px; opacity: 0.8; margin: 0; }

.soc-footer-info p {
  font-size: 14px;
  margin: 0 0 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.soc-footer-info i { color: var(--soc-teal-light); margin-top: 3px; }

.soc-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.soc-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: #fff;
  transition: background 0.2s;
}

.soc-footer-social a:hover {
  background: var(--soc-teal);
  color: #fff;
}

.soc-footer-social img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.soc-footer-nav {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.soc-footer-nav a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}

.soc-footer-nav a:hover { color: var(--soc-teal-light); }

.soc-footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  opacity: 0.65;
  text-align: center;
}

/* ── Float sidebar (right) ── */
.soc-float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.soc-float-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 12px 16px;
  background: var(--soc-ocean);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--soc-radius) 0 0 var(--soc-radius);
  margin-bottom: 2px;
  box-shadow: -2px 2px 12px rgba(11, 61, 69, 0.2);
  transition: background 0.2s, padding-right 0.2s;
  white-space: nowrap;
}

.soc-float-item:hover {
  background: var(--soc-teal);
  color: #fff;
  padding-right: 20px;
}

.soc-float-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.soc-float-item i { font-size: 16px; width: 20px; text-align: center; }

/* ── Responsive ── */
@media (max-width: 992px) {
  .soc-nav-toggle { display: block; }

  .soc-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--soc-white);
    padding: 16px;
    box-shadow: var(--soc-shadow);
    white-space: normal;
  }

  .soc-nav.open { display: flex; }

  .soc-nav li a {
    border-bottom: none;
    border-radius: var(--soc-radius);
  }

  .soc-product-bento { grid-template-columns: 1fr; }
  .soc-product-card:first-child { grid-column: span 1; flex-direction: column; }
  .soc-product-card:first-child .soc-product-img { flex: none; }

  .soc-about-grid,
  .soc-detail,
  .soc-contact,
  .soc-footer-top { grid-template-columns: 1fr; }

  .soc-adv-grid { grid-template-columns: repeat(2, 1fr); }
  .soc-catalog-grid,
  .soc-values-grid { grid-template-columns: 1fr; }

  .soc-form-row { grid-template-columns: 1fr; }

  .soc-contact-info,
  .soc-contact-form { padding: 32px 24px; }

  .soc-float { display: none !important; }
}

@media (max-width: 576px) {
  .soc-adv-grid { grid-template-columns: 1fr; }
  .soc-section { padding: 48px 0; }
}
