/* =================================================
   RESET + VARIABLES
================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

:root {
  --brand: #1F7A5B;
  --brand-hover: #17684D;
  --bg-light: #F4F6F5;
  --bg-dark: #2f343a;
  --text-main: #1A1A1A;
  --text-muted: #6B6F73;
  --white: #ffffff;
  --border: #e5e5e5;

  --radius: 14px;
  --shadow-sm: 0 10px 30px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 28px rgba(0,0,0,0.05);
  --shadow-lg: 0 22px 40px rgba(0,0,0,0.12);
}

body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-main);
  background: #fff;
}

a { text-decoration: none; color: inherit; }

/* =================================================
   TYPOGRAPHY
================================================= */
h1, h2, h3, h4, h5 {
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 { font-size: 44px; }
h2 { font-size: 32px; }

p {
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.text-muted { color: var(--text-muted) !important; }

/* =================================================
   HEADER
================================================= */
.site-header {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .nav-link { font-weight: 500; }

.navbar .nav-item.active > .nav-link,
.navbar .nav-link:hover {
  color: var(--brand) !important;
}

/* =================================================
   BUTTONS
================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.btn:hover {
  background: var(--brand-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
}

.btn-outline-light:hover { background: rgba(255,255,255,0.1); }

/* =================================================
   HERO
================================================= */
.hero {
  position: relative;
  min-height: 80vh;
  background: url("/img/hero-bg.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  color: #1A1A1A; /* основной тёмный цвет */
}

/* §©§Ñ§ä§Ö§Þ§ß§Ö§ß§Ú§Ö (§ã§Õ§Ö§Ý§Ñ§Ý §ã§Ó§Ö§ä§Ý§Ö§Ö, §é§ä§à§Ò§í §æ§à§ä§à §Ò§í§Ý§à §ñ§â§é§Ö) */
.hero-overlay {
  background: linear-gradient(
    rgba(0,0,0,0.10),
    rgba(0,0,0,0.18)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero h1 { text-shadow: 0 6px 22px rgba(0,0,0,0.45); }

.hero p {
  margin-top: 16px;
  font-size: 17px;
  color: rgba(255,255,255,0.92);
}

.hero-subtext {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.hero .btn { box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.hero h1 {
  color: #134E3A;
}

.hero p {
  color: #3a3a3a;
}


/* =================================================
   SECTIONS
================================================= */
section { padding: 90px 0; }
section.bg-light { background: var(--bg-light); }

/* =================================================
   WHY / ADVANTAGES
================================================= */
.why-item {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.why-item h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* =================================================
   FACTS
================================================= */
.fact strong {
  font-size: 42px;
  display: block;
  margin-bottom: 6px;
}

.fact span {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* =================================================
   PRODUCT / CATALOG CARDS
================================================= */
.towel-card {
  background: #f3f4f3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .35s ease, box-shadow .35s ease;
}

.towel-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: none;                 /* §µ§¢§²§¡§­§ª grayscale(100%) */
  transition: transform .5s ease;
}

.towel-card:hover img { transform: scale(1.06); }

.towel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.towel-card h5 {
  margin-top: 14px;
  font-size: 17px;
}

.towel-card p { font-size: 14px; }

/* =================================================
   SEO TEXT
================================================= */
.seo-text p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 14px;
}

/* =================================================
   FAQ (Bootstrap 4) ¡ª §°§¥§¯§¡ §Ó§Ö§â§ã§Ú§ñ, §Ò§Ö§Ù §Õ§å§Ò§Ý§Ö§Û
================================================= */
.faq-section .card {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #fff;
}

.faq-section .card-header {
  padding: 0;
  background: #17694a;
}

/* §¬§ß§à§á§Ü§Ñ-§à§á§â§à§ã§ß§Ú§Ü */
.faq-section .btn-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff !important;
  text-decoration: none !important;
  border: none;
  background: transparent;
}

.faq-section .btn-link:hover {
  background: #198754;
  color: #ffffff !important;
}

/* §³§Ó§Ö§â§ß§å§ä§à§Ö §ã§à§ã§ä§à§ñ§ß§Ú§Ö */
.faq-section .btn-link.collapsed {
  background: #f8f9fa;
  color: #222 !important;
}

/* §´§Ö§Ý§à */
.faq-section .card-body {
  padding: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  background: #ffffff;
}

/* =================================================
   FOOTER
================================================= */
.site-footer {
  background: var(--bg-dark);
  color: #e5e7ea;
  padding: 48px 0;
  font-size: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 32px;
  margin-right: 14px;
}

.footer-text { line-height: 1.6; }
.footer-text strong { letter-spacing: 0.08em; }

.footer-copy {
  margin-top: 20px;
  color: #9aa0a6;
  font-size: 13px;
}

/* =================================================
   MOBILE
================================================= */
@media (max-width: 768px) {
  /* §´§Ú§á§à§Ô§â§Ñ§æ§Ú§Ü§Ñ */
  h1 { font-size: 26px; line-height: 1.25; }
  h2 { font-size: 22px; }
  p  { font-size: 15px; }

  /* Hero */
  .hero { min-height: 100vh; text-align: center; }
  .hero-content { padding: 0 20px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }

  /* §³§Ö§Ü§è§Ú§Ú */
  section { padding: 40px 0; }

  /* §³§Ö§ä§Ü§Ñ §Ü§Ñ§â§ä§à§é§Ö§Ü: 1 §Ó §ã§ä§â§à§Ü§å (Bootstrap col-md-4) */
  .container { padding-left: 12px; padding-right: 12px; }
  .col-md-4 { flex: 0 0 100%; max-width: 100%; }

  .towel-card { border-radius: 16px; }
  .towel-card img { height: 220px; border-radius: 12px; }
  .towel-card h5 { font-size: 18px; margin-top: 12px; }
  .towel-card p  { font-size: 14px; }

  .towel-card .btn {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    font-size: 15px;
  }

  /* FAQ */
  .faq-section h2 { font-size: 22px; }
  .faq-section .btn-link { font-size: 15px; padding: 14px 16px; }
  .faq-section .card-body { font-size: 14px; padding: 16px; }

  /* Footer */
  .site-footer { text-align: center; padding: 32px 0; }
  .footer-brand { flex-direction: column; align-items: center; }
  .footer-logo { max-width: 140px; height: auto; margin: 0 0 12px; }
  .footer-copy { text-align: center; margin-top: 20px; }
}

/* =================================================
   MOBILE FIXED CTA (§Ö§ã§Ý§Ú §Ú§ã§á§à§Ý§î§Ù§å§Ö§ä§Ö mobile-cta)
================================================= */
@media (max-width: 768px) {
  .mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: #ffffff;
    z-index: 9999;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.12);
  }

  body { padding-bottom: 70px; }
}
/* HERO TEXT COLOR FIX */
.hero {
  color: #1a1a1a !important;
}

.hero h1 {
  color: #134E3A !important;
  text-shadow: none !important;
}

.hero p,
.hero-subtext {
  color: #2f343a !important;
}

.hero-overlay {
  background: linear-gradient(
    rgba(255,255,255,0.65),
    rgba(255,255,255,0.65)
  ) !important;
}
/* =========================
   HERO PRO (SAFE)
   ========================= */
.hero{
  position: relative;
  min-height: 78vh;
  background: url("/img/hero-bg.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  color:#1a1a1a;
}

/* светлая мягкая подложка вместо темной */
.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.82) 0%,
    rgba(255,255,255,0.62) 45%,
    rgba(255,255,255,0.25) 100%
  ) !important;
}

/* контейнер с текстом */
.hero-content{
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 26px 28px;
  border-radius: 18px;
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
  border: 1px solid rgba(255,255,255,0.55);
}

/* типографика */
.hero h1{
  color:#0f3f2f !important;
  text-shadow:none !important;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.hero p,
.hero-subtext{
  color:#2f343a !important;
  text-shadow:none !important;
  margin-top: 14px;
}

/* кнопки чуть “дороже” */
.hero-buttons{
  margin-top: 22px;
  gap: 12px;
  flex-wrap: wrap;
}
.hero .btn{
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}
.hero .btn-outline-light{
  background: #ffffff;
  color: #0f3f2f;
  border: 1px solid rgba(15,63,47,0.18);
}
.hero .btn-outline-light:hover{
  background: #f6fbf9;
  color:#0f3f2f;
  transform: translateY(-1px);
}

/* мобилка */
@media (max-width: 768px){
  .hero{
    min-height: 86vh;
    text-align: left;
  }
  .hero-content{
    margin: 0 12px;
    padding: 18px 16px;
    border-radius: 16px;
  }
  .hero h1{ font-size: 30px; }
}
/* =========================
   HERO FINAL PRO
   ========================= */

.hero{
  position: relative;
  min-height: 78vh;
  background: url("/img/hero-bg.jpg") right center / cover no-repeat;
  display:flex;
  align-items:center;
}

/* мягкий светлый градиент слева */
.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.78) 35%,
    rgba(255,255,255,0.45) 60%,
    rgba(255,255,255,0.10) 100%
  ) !important;
}

/* стеклянный блок */
.hero-content{
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-left: 40px;

  padding: 32px 36px;

  background: rgba(255,255,255,0.72);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 18px;

  box-shadow:
    0 25px 60px rgba(0,0,0,0.12),
    0 2px 6px rgba(0,0,0,0.06);

  border: 1px solid rgba(255,255,255,0.55);
}

/* заголовок */
.hero h1{
  color:#0f3f2f !important;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 14px;
}

/* текст */
.hero p,
.hero-subtext{
  color:#2c3136 !important;
  font-weight: 500;
}

/* кнопки */
.hero-buttons{
  margin-top: 24px;
  display:flex;
  gap:14px;
}

.hero .btn{
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
}

/* мобильная версия */
@media (max-width:768px){

  .hero{
    background-position:center;
  }

  .hero-content{
    margin: 0 16px;
    padding: 22px;
  }

  .hero h1{
    font-size: 30px;
  }

}
.production-card{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.production-card video{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.production-overlay{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:20px;
  background:linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color:#fff;
}
/* =================================================
   SAFE PATCH (Hero + Production) — add to END of file
   Не ломает сайт: меняем только HERO и production-card
================================================= */

/* HERO: светлый фон + читаемый тёмный текст */
.hero{
  position: relative;
  min-height: 78vh;
  background: url("/img/hero-bg.jpg") right center / cover no-repeat;
  display:flex;
  align-items:center;
  color:#1a1a1a;
}

/* обязательно задаём position + inset, чтобы overlay работал */
.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.78) 35%,
    rgba(255,255,255,0.45) 60%,
    rgba(255,255,255,0.10) 100%
  ) !important;
}

/* стеклянная карточка с текстом */
.hero-content{
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-left: 40px;
  padding: 32px 36px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.06);
  border: 1px solid rgba(255,255,255,0.55);
}

/* заголовок и текст — тёмные */
.hero h1{
  color:#0f3f2f !important;
  text-shadow:none !important;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero p,
.hero .lead,
.hero-subtext{
  color:#2c3136 !important;
  text-shadow:none !important;
}

/* кнопки */
.hero-buttons{
  margin-top: 24px;
  display:flex;
  gap:14px;
  flex-wrap: wrap;
}

.hero .btn{
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}

/* MOBILE hero */
@media (max-width:768px){
  .hero{ min-height: 86vh; background-position:center; }
  .hero-content{ margin: 0 16px; padding: 22px; border-radius: 16px; }
  .hero h1{ font-size: 30px !important; }
}

/* =================================================
   PRODUCTION CARDS (video)
================================================= */
.production-card{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.production-card video{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
  transition: transform .5s ease;
}

.production-card:hover video{
  transform: scale(1.08);
}

.production-overlay{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:22px;
  background:linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.15));
  color:#fff;
}
/* =========================
   PRODUCTION (VIDEO CARDS)
   ========================= */
.production-card{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
  transition: transform .25s ease, box-shadow .25s ease;
  background: #000; /* чтобы не было белых полос при загрузке */
}

.production-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.16);
}

.production-card video{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.production-overlay{
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.15), transparent);
  color: #fff;
}

.production-overlay h5{
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.production-overlay span{
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  opacity: .92;
}

/* Mobile */
@media (max-width: 768px){
  .production-card video{ height: 220px; }
}
/* =========================
   CAPABILITIES (SAFE)
   ========================= */
.capabilities { padding: 90px 0; }

.cap-card{
  border-radius: 18px;
  padding: 28px 28px;
  min-height: 240px;
  color: #ffffff;
  box-shadow: 0 16px 45px rgba(0,0,0,0.10);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.cap-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.14);
}

/* заголовок + иконка */
.cap-head{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-bottom: 16px;
}

.cap-head h5{
  margin:0;
  font-size: 20px;
  font-weight: 700;
}

.cap-ico{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.18);
  font-size: 20px;
}

.cap-card p{
  margin:0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
}

/* мягкие “пятна” как на примере */
.cap-card:before,
.cap-card:after{
  content:"";
  position:absolute;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  filter: blur(0.2px);
}
.cap-card:before{
  width: 140px; height: 140px;
  right: -40px; top: -40px;
}
.cap-card:after{
  width: 160px; height: 160px;
  left: -60px; bottom: -60px;
  background: rgba(255,255,255,0.08);
}

/* Цветовые темы (не кислотные, “дороже”) */
.cap-blue   { background: linear-gradient(135deg, #4f73d9, #5b59b8); }
.cap-pink   { background: linear-gradient(135deg, #ff78b7, #ff6a84); }
.cap-cyan   { background: linear-gradient(135deg, #27c6ff, #15a6df); }
.cap-orange { background: linear-gradient(135deg, #ff7b7b, #ffbf3f); }
.cap-deep   { background: linear-gradient(135deg, #2aa8b8, #2b2d78); }

/* Mobile */
@media (max-width: 768px){
  .cap-card{ min-height: unset; padding: 22px; }
  .cap-head h5{ font-size: 18px; }
}
/* =========================
   CAPABILITIES PREMIUM OSIM
   ========================= */

.capabilities{
  background:#f7f9f8;
}

/* карточка */
.cap-card{
  height:100%;
  padding:32px 30px;

  border-radius:18px;

  background: linear-gradient(
    145deg,
    #ffffff 0%,
    #f3f7f5 100%
  );

  border:1px solid rgba(31,122,91,0.08);

  box-shadow:
    0 8px 20px rgba(0,0,0,0.04),
    0 2px 6px rgba(0,0,0,0.03);

  transition: all .35s ease;
}

/* hover эффект премиум */
.cap-card:hover{
  transform: translateY(-6px);

  box-shadow:
    0 20px 45px rgba(0,0,0,0.08),
    0 4px 12px rgba(0,0,0,0.06);

  border-color: rgba(31,122,91,0.18);
}

/* верх */
.cap-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:16px;
}

/* иконка */
.cap-icon{
  width:44px;
  height:44px;

  border-radius:12px;

  background: linear-gradient(
    145deg,
    #1F7A5B,
    #2d8f6c
  );

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:20px;

  color:#fff;

  box-shadow:
    0 6px 16px rgba(31,122,91,0.25);
}

/* заголовок */
.cap-head h5{
  margin:0;
  font-size:18px;
  font-weight:600;
  color:#134E3A;
}

/* текст */
.cap-card p{
  margin:0;
  font-size:15px;
  line-height:1.65;
  color:#4a4f55;
}

/* mobile */
@media(max-width:768px){

  .cap-card{
    padding:22px 20px;
    border-radius:16px;
  }

  .cap-head h5{
    font-size:17px;
  }

}
/* =========================
   PRODUCT CARDS — PREMIUM (SAFE PATCH)
   affects: .towel-card only
   ========================= */

/* сама карточка */
.towel-card{
  background: #ffffff;
  border: 1px solid rgba(31,122,91,0.10);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* картинка — одинаковая высота и ровный кроп */
.towel-card img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

/* отступы внутри карточки (у тебя иногда p-3 в HTML — это ок) */
.towel-card h5{
  margin: 14px 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: #134E3A;
}

.towel-card p{
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.55;
  color: #5b6268;
}

/* hover — дорого и без резких прыжков */
.towel-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 20px 55px rgba(0,0,0,0.10);
  border-color: rgba(31,122,91,0.22);
}

.towel-card:hover img{
  transform: scale(1.06);
}

/* кнопка в карточке — ровная */
.towel-card .btn{
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 700;
}

/* мобильная оптимизация */
@media (max-width: 768px){
  .towel-card img{ height: 210px; }
  .towel-card{ border-radius: 16px; }
}
/* WhatsApp Float PRO */
.whatsapp-float{

  position: fixed;

  right: 22px;
  bottom: 22px;

  width: 60px;
  height: 60px;

  background: linear-gradient(135deg,#25D366,#1ebe5d);

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.25);

  z-index: 9999;

  transition: all .25s ease;
}

.whatsapp-float:hover{

  transform: scale(1.10);

  box-shadow:
    0 18px 45px rgba(0,0,0,0.35);
}

/* mobile */
@media(max-width:768px){

  .whatsapp-float{
    width:54px;
    height:54px;
    right:16px;
    bottom:16px;
  }

}
.footer-contact-link{
  display:block;
  color:#e5e7ea;
  margin-bottom:4px;
  transition: all .2s ease;
}

.footer-contact-link:hover{
  color:#ffffff;
  transform: translateX(-2px);
}

.footer-social{
  color:#cfd6db;
  transition: all .2s ease;
}

.footer-social:hover{
  color:#ffffff;
}
/* =========================
   PRODUCT CARDS (EURO STYLE)
   ========================= */

/* контейнер карточки */
.towel-card{
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

/* фиксированная “витрина” изображения */
.towel-card .towel-media{
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #f6f7f7;
}

.towel-card .towel-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .5s ease, filter .5s ease;
}

/* мягкий градиент снизу для читаемости текста */
.towel-card .towel-media::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: 55%;
  background: linear-gradient(to top, rgba(0,0,0,0.45), rgba(0,0,0,0));
  pointer-events:none;
}

/* подпись */
.towel-card .towel-info{
  position:absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 12px;
}

.towel-card .towel-title{
  color:#ffffff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* “Подробнее” как аккуратная кнопка */
.towel-card .towel-link{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.88);
  color:#0f3f2f;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.75);
  transition: transform .25s ease, background .25s ease;
  white-space: nowrap;
}

.towel-card .towel-link:hover{
  background: #ffffff;
  transform: translateY(-1px);
}

/* hover эффекты */
.towel-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0,0,0,0.12);
  border-color: rgba(31,122,91,0.28);
}

.towel-card:hover .towel-media img{
  transform: scale(1.08);
}

/* убираем старые стили если остались */
.towel-card img{
  filter: none !important;
}

/* mobile */
@media (max-width: 768px){
  .towel-card .towel-media{ height: 200px; }
  .towel-card .towel-info{ left: 14px; right: 14px; bottom: 12px; }
  .towel-card .towel-title{ font-size: 15px; }
  .towel-card .towel-link{ padding: 9px 12px; border-radius: 11px; }
}
/* ===== EUROPEAN PRODUCT CARDS ===== */

.towel-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
  transition:all .25s ease;
}

.towel-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.towel-media{
  overflow:hidden;
}

.towel-media img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:transform .4s ease;
}

.towel-card:hover img{
  transform:scale(1.05);
}

.towel-info{
  padding:18px;
}

.towel-title{
  font-size:16px;
  font-weight:600;
  margin-bottom:6px;
}

.towel-link{
  font-size:14px;
  color:#1F7A5B;
  font-weight:500;
}

.towel-link:hover{
  text-decoration:underline;
}


