@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

:root{
  --green:#2fcd48;
  --green-dark:#18a832;
  --beige:#efedd9;
  --beige-2:#f5f3e6;
  --text:#26292e;
  --muted:#6f747b;
  --line:#ececec;
  --blue:#1f3b66;
  --footer:#eef1f3;
}

*{box-sizing:border-box}
html,body{margin:0;overflow-x: hidden;padding:0}
body{
  font-family:'Open Sans',sans-serif;
  color:var(--text);
  background:#fff;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
.container{
  width:min(100%,1040px);
  margin:0 auto;
  padding:0 18px;
}
.top-strip{height:20px;background:var(--beige)}
.top-bar{
  background:var(--beige-2);
  border-bottom:1px solid #e8e3c8;
}
.top-inner{
  min-height:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.top-contact{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  font-size:11px;
  color:#6e7367;
}
.top-pill{
  display:inline-flex;
  align-items:center;
  gap:7px;
  white-space:nowrap;
}
.dot{
  width:7px;height:7px;border-radius:50%;background:#39ca4d;display:inline-block;
}
.top-social{
  display:flex;gap:8px;align-items:center;
}
.top-social a,.footer-social a{
  width:18px;height:18px;border:1px solid #cfd2d7;border-radius:50%;
  display:grid;place-items:center;background:#fff;color:#4b4f56;font-size:9px;font-weight:700;
}

.site-header{
  position:sticky;top:0;z-index:30;background:#fff;
}
.header-inner{
  min-height:58px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.logo{
  font-family:'Nunito',sans-serif;
  font-size:20px;font-weight:900;color:#34c84a;letter-spacing:-0.02em;
}
.header-actions{display:flex;align-items:center;gap:10px}
.store-link{
  display:inline-flex;align-items:center;gap:6px;
  font-size:10px;font-weight:700;color:#2f3337;
}
.signin-btn{
  background:#239d31;color:#fff;border-radius:6px;padding:8px 13px;
  font-size:10px;font-weight:800;letter-spacing:.04em;
}
.main-nav{
  border-top:1px solid #efefef;
  border-bottom:1px solid #efefef;
}
.nav-inner{
  min-height:40px;
  display:flex;align-items:center;gap:22px;
}
.main-nav a{
  font-size:10px;font-weight:800;color:#7b8189;
  letter-spacing:.03em;
}
.main-nav a.active{color:#34c84a}
.cart-link{
  margin-left:auto;position:relative;font-size:18px;color:#343a40;line-height:1;
}
.cart-badge{
  position:absolute;top:-6px;right:-8px;
  width:13px;height:13px;border-radius:50%;display:grid;place-items:center;
  background:#ff3d8f;color:#fff;font-size:8px;font-weight:700;
}

main{padding-bottom:30px}
.hero-section{padding-top:12px}
.hero-copy h1{
  max-width:650px;
  margin:14px 0 8px;
  font-family:'Nunito',sans-serif;font-size:25px;line-height:1.24;font-weight:900;
}
.hero-copy p{
  margin:0 0 18px;
  color:#7b8087;font-size:12px;
}
.hero-cta-card{
  width:min(100%,650px);
  margin:0 auto 14px;
  min-height:175px;
  border-radius:12px;
  background:linear-gradient(180deg,#2fd549 0%, #24c33d 100%);
  display:flex;flex-direction:column;justify-content:center;align-items:center;
  color:#fff;
  box-shadow:0 18px 40px rgba(36,195,61,.20);
}
.hero-cta-title{
  font-family:'Nunito',sans-serif;
  font-size:20px;font-weight:800;margin-bottom:15px;
}
.hero-cta-btn{
  background:#fff;color:#28be40;
  border-radius:999px;padding:14px 34px;
  font-size:14px;font-weight:800;
  box-shadow:0 12px 24px rgba(0,0,0,.13);
}
.breadcrumb{
  margin-top:12px;
  font-size:11px;color:#8a9097;
}
.breadcrumb strong{color:#2b3035}

.intro-grid{
  display:grid;
  grid-template-columns:1fr 330px;
  gap:40px;
  align-items:center;
  padding-top:8px;
}
.intro-grid.second{padding-top:16px}
.intro-text h2{
  margin:0 0 8px;
  font-family:'Nunito',sans-serif;font-size:18px;line-height:1.2;font-weight:900;
}
.intro-text p,.intro-text ul{
  font-size:12px;line-height:1.55;color:#555b62;
}
.intro-text ul{margin:8px 0 12px 18px;padding:0}
.mini-btn{
  display:inline-block;
  border:1px solid #dcdcdc;border-radius:8px;background:#fafafa;
  padding:6px 11px;font-size:10px;color:#60656c;
}
.intro-visual img{
  width:100%;height:158px;object-fit:cover;border-radius:6px;
  box-shadow:0 2px 6px rgba(0,0,0,.05);
}

.cards-section{padding-top:10px}
.cards-section.compact-top{padding-top:2px}
.cards-section h3{
  text-align:center;
  margin:10px 0 15px;
  font-family:'Nunito',sans-serif;font-size:17px;font-weight:900;color:var(--blue);
}
.service-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 14px;
}
.service-card{
  min-height:72px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:9px;
  display:grid;
  grid-template-columns:84px 1fr 24px;
  align-items:center;
  padding-right:10px;
  box-shadow:0 1px 1px rgba(0,0,0,.02);
}
.service-thumb{
  width:84px;height:70px;
  display:flex;align-items:center;justify-content:center;padding:7px;
}
.service-thumb img{
  width:71px;height:56px;object-fit:cover;border-radius:4px;
}
.service-badge{
  width:58px;height:58px;border-radius:8px;display:grid;place-items:center;
  background:linear-gradient(180deg,#fafafa,#ececec);
  font-family:'Nunito',sans-serif;font-size:22px;font-weight:900;color:#666;
}
.service-title{
  font-size:11px;font-weight:800;color:#2f3439;margin-bottom:3px;
}
.service-sub{
  font-size:9px;color:#8c939a;line-height:1.35;
}
.service-arrow{
  width:15px;height:15px;border-radius:50%;
  display:grid;place-items:center;
  background:#f1f5fc;color:#8797bb;font-size:13px;font-weight:700;
}

.article-copy{
  max-width:830px;
  padding-top:10px;
}
.article-copy h2{
  margin:14px 0 8px;
  font-family:'Nunito',sans-serif;font-size:18px;line-height:1.22;font-weight:900;
}
.article-copy p,.article-copy li{
  font-size:12px;line-height:1.65;color:#4f555c;
}
.article-copy ul{margin:0 0 12px 18px;padding:0}
.article-copy p{margin:0 0 12px}

.site-footer{
  margin-top:18px;
  background:var(--footer);
  text-align:center;
  padding:22px 18px 24px;
  color:#7d858d;
}
.footer-brand{
  font-family:'Nunito',sans-serif;font-size:25px;font-weight:900;color:#35c84a;
}
.footer-social{
  margin:10px 0 12px;
  display:flex;justify-content:center;gap:8px;
}
.footer-links{
  display:flex;justify-content:center;flex-wrap:wrap;
  gap:8px 13px;
  max-width:1100px;
  margin:0 auto 12px;
  font-size:10px;
}
.payments{
  display:flex;justify-content:center;gap:8px;flex-wrap:wrap;
}
.payments span{
  background:#fff;border:1px solid #d7dce0;border-radius:999px;
  padding:5px 10px;font-size:10px;color:#616870;
}

.floating-widget{
  position:fixed;right:20px;bottom:20px;z-index:35;
  width:248px;
  background:linear-gradient(180deg,#32ca4a 0%,#1ea83a 100%);
  border-radius:14px;overflow:hidden;color:#fff;
  box-shadow:0 18px 40px rgba(29,105,45,.35);
}
.widget-head{
  background:rgba(255,255,255,.12);
  display:flex;align-items:center;justify-content:space-between;gap:8px;
  padding:9px 11px;
}
.widget-brand{font-size:13px;font-weight:800}
.widget-sub{font-size:9px;opacity:.96}
.widget-tag{
  background:#ffd15c;color:#6d4e00;
  border-radius:999px;padding:4px 7px;
  font-size:9px;font-weight:800;white-space:nowrap;
}
.widget-body{padding:11px}
.widget-body h4{
  margin:0 0 8px;
  font-family:'Nunito',sans-serif;font-size:17px;line-height:1.14;font-weight:900;
}
.widget-body ul{
  margin:0 0 9px 16px;padding:0;font-size:10px;line-height:1.45;
}
.widget-os{
  display:grid;grid-template-columns:1fr 1fr;gap:7px;margin:10px 0;
}
.widget-os span{
  background:rgba(0,0,0,.16);
  border:1px solid rgba(255,255,255,.17);
  border-radius:10px;padding:8px 6px;text-align:center;
  font-size:10px;font-weight:700;
}
.widget-actions{
  display:grid;grid-template-columns:1fr 1fr;gap:7px;
}
.widget-actions a{
  min-height:40px;border-radius:12px;
  display:grid;place-items:center;text-align:center;
  padding:8px;font-size:10px;font-weight:800;
  background:rgba(255,255,255,.16);
}
.widget-actions a.primary{background:#fff;color:#129b2b}

#cookie-banner{
  display:none;position:fixed;left:0;right:0;bottom:0;z-index:60;
  background:#142134;color:#fff;padding:14px 18px;
  align-items:center;justify-content:space-between;gap:14px;
}
#cookie-banner.show{display:flex}
#cookie-accept{
  border:0;background:#49b95b;color:#fff;
  border-radius:8px;padding:9px 16px;font-size:13px;font-weight:700;
}
#preloader{
  position:fixed;inset:0;background:#fff;z-index:100;
  display:flex;align-items:center;justify-content:center;
  transition:opacity .4s;
}
#preloader.hide{opacity:0;pointer-events:none}
.preloader-spinner{
  width:42px;height:42px;border-radius:50%;
  border:4px solid #e9e9e9;border-top-color:#2ec946;
  animation:spin .85s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}

@media (max-width: 980px){
  .container{width:min(100%,900px)}
  .intro-grid{grid-template-columns:1fr}
  .service-grid{grid-template-columns:1fr}
  .floating-widget{width:calc(100% - 24px);left:12px;right:12px;bottom:12px}
}
@media (max-width: 760px){
  .top-inner,.header-inner{flex-direction:column;align-items:flex-start;padding:8px 0}
  .nav-inner{flex-wrap:wrap;gap:12px 16px;padding:10px 0}
  .cart-link{margin-left:0}
  .hero-copy h1{font-size:22px}
  .hero-cta-card{min-height:150px}
}

.store-finder-wrap {
  position: relative;
  display: inline-block;
}

.sf-panel {
  position: absolute;
  top: 110%;
  right: 0;
  width: 420px;
  max-width: 90vw;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  padding: 14px;
  z-index: 9999;
}

.sf-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.sf-input {
  flex: 1;
  height: 42px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0 12px;
  font-size: 14px;
  outline: none;
}

.sf-btn {
  height: 42px;
  border: 0;
  border-radius: 10px;
  padding: 0 14px;
  cursor: pointer;
  font-weight: 600;
}

.sf-btn-primary {
  background: #22c55e;
  color: #fff;
}

.sf-results,
.sf-selected,
.sf-services {
  margin-top: 10px;
}

.sf-shop-item {
  padding: 10px 12px;
  border: 1px solid #eef2f7;
  border-radius: 10px;
  margin-bottom: 8px;
  cursor: pointer;
  background: #fff;
}

.sf-shop-item:hover {
  background: #f8fafc;
}

.sf-service-item {
  padding: 8px 10px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
}

.sf-service-item:last-child {
  border-bottom: none;
}

.sf-state {
  padding: 10px 12px;
  font-size: 14px;
  color: #475569;
}

.sf-error {
  color: #b91c1c;
}

.sf-results-title,
.sf-services-title,
.sf-selected-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sf-results-list,
.sf-services-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sf-shop-item {
  width: 100%;
  text-align: left;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
  cursor: pointer;
}

.sf-shop-item:hover {
  background: #f8fafc;
}

.sf-shop-name {
  font-weight: 700;
  color: #0f172a;
}

.sf-shop-meta,
.sf-shop-address,
.sf-service-short,
.sf-service-desc {
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
}

.sf-selected-card {
  border: 1px solid #dbeafe;
  background: #f8fbff;
  border-radius: 10px;
  padding: 12px;
}

.sf-service-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
}

.sf-service-link:hover {
  background: #f8fafc;
}

.sf-service-name {
  font-weight: 700;
  color: #0f172a;
}

.sf-choose-btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  background: #36c944;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.sf-services-grid-mini {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.sf-service-pill {
  min-height: 48px;
  border: 1px solid #dfe5ec;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #31425f;
  overflow: hidden;
}

.sf-shop-arrow {
  margin-top: 6px;
  font-size: 18px;
  color: #22304a;
  font-weight: 700;
}

.tag-btn {
  padding: 5px 10px;
  border: 1px solid #d8dee7;
  border-radius: 999px;
  background: #fff;
  font-size: 11px;
  color: #67748a;
}

@media (max-width: 900px) {
  .sf-services-grid-mini {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .sf-services-grid-mini {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
* {
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

/* Top bar */
.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.top-contact,
.top-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Header */
.site-header {
  position: relative;
  background: #fff;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  flex-wrap: wrap;
}

.logo {
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mobile-menu-toggle {
  display: none;
  border: none;
  background: #2fc84f;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 22px;
  cursor: pointer;
  font-weight: 700;
  flex-shrink: 0;
}

/* Navigation */
.main-nav {
  border-top: 1px solid #edf2f6;
  border-bottom: 1px solid #edf2f6;
  background: #fff;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 58px;
  flex-wrap: wrap;
}

.nav-inner a {
  white-space: nowrap;
}

/* Store finder */
.store-finder-wrap {
  position: relative;
}

.sf-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(460px, calc(100vw - 24px));
  max-height: 78vh;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #dde6ef;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
  padding: 16px;
  z-index: 9999;
}

.sf-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 14px;
}

.sf-input {
  width: 100%;
  min-width: 0;
  height: 58px;
  border: 1px solid #d7e0ea;
  border-radius: 16px;
  padding: 0 18px;
  font-size: 16px;
  outline: none;
}

.sf-btn {
  min-height: 58px;
  border: none;
  border-radius: 16px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
}

.sf-btn-primary {
  background: #31c84a;
  color: #fff;
}

.sf-results-title,
.sf-services-title {
  margin: 10px 0 12px;
  font-weight: 800;
  color: #253752;
}

.sf-results-list {
  display: grid;
  gap: 12px;
}

.sf-shop-item {
  width: 100%;
  text-align: left;
  border: 1px solid #dce4ed;
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  cursor: pointer;
}

.sf-shop-name {
  font-weight: 800;
  color: #21324b;
  margin-bottom: 4px;
}

.sf-shop-meta,
.sf-shop-address {
  color: #6c7c92;
  font-size: 14px;
  line-height: 1.5;
}

.sf-selected-card {
  margin-top: 12px;
  border: 1px solid #d4e3f4;
  background: #f7fbff;
  border-radius: 16px;
  padding: 14px;
}

.sf-selected-title {
  font-weight: 800;
  margin-bottom: 10px;
  color: #233652;
}

.sf-services-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.sf-service-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 6px;
  border: 1px solid #dce4ed;
  border-radius: 14px;
  background: #fff;
  color: #33445f;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.sf-choose-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: none;
  border-radius: 14px;
  background: #31c84a;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.sf-state {
  padding: 12px 8px;
  color: #5f6f86;
  font-size: 14px;
}

.sf-error {
  color: #bf3b34;
}

/* Widget flottant */
.floating-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 360px;
  max-width: calc(100vw - 24px);
  z-index: 999;
}

/* ===== TABLETTE ===== */
@media (max-width: 991px) {
  .header-inner {
    align-items: center;
  }

  .nav-inner {
    gap: 18px;
  }

  .sf-services-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .floating-widget {
    width: 320px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .top-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-contact,
  .top-social {
    width: 100%;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .logo {
    grid-column: 1 / 2;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-column: 2 / 3;
    justify-self: end;
  }

  .header-actions {
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    width: 100%;
  }

  .store-link,
  .signin-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    display: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.is-open {
    display: block;
  }

  .nav-inner {
    justify-content: flex-start;
    flex-wrap: nowrap;
    min-width: max-content;
    gap: 20px;
  }

  .store-finder-wrap {
    position: static;
  }

  .sf-panel {
    position: fixed;
    top: 118px;
    left: 10px;
    right: 10px;
    width: auto;
    max-width: none;
    max-height: calc(100vh - 130px);
    padding: 14px;
    border-radius: 20px;
  }

  .sf-actions {
    grid-template-columns: 1fr;
  }

  .sf-input,
  .sf-btn {
    width: 100%;
  }

  .sf-services-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .floating-widget {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 24px);
    margin: 20px 12px 0;
  }

  .widget-os,
  .widget-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ===== PETITS TELEPHONES ===== */
@media (max-width: 480px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-actions {
    grid-template-columns: 1fr;
  }

  .signin-btn,
  .store-link {
    width: 100%;
  }

  .sf-panel {
    top: 110px;
    left: 8px;
    right: 8px;
    padding: 12px;
  }

  .sf-services-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sf-input,
  .sf-btn {
    min-height: 52px;
    font-size: 15px;
  }

  .floating-widget {
    width: calc(100% - 16px);
    margin: 18px 8px 0;
  }
}

.shop-page-wrap{
  max-width:1280px;
  margin:40px auto 60px;
  padding:0 20px;
}

.shop-back{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:20px;
  padding:12px 18px;
  border-radius:14px;
  background:#fff;
  border:1px solid #dfe6ee;
  color:#22324a;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 6px 18px rgba(15,23,42,.05);
}

.shop-page-wrap .shop-main-layout{
  display:grid !important;
  grid-template-columns: 1.35fr .95fr !important;
  grid-template-areas:
    "hero info"
    "upload info"
    "services services" !important;
  gap:24px !important;
  align-items:start !important;
}

.shop-page-wrap .shop-card{
  background:#fff;
  border:1px solid #e6edf5;
  border-radius:24px;
  padding:26px;
  box-shadow:0 10px 30px rgba(15,23,42,.05);
  min-width:0;
}

.shop-page-wrap .shop-hero-card{
  grid-area: hero !important;
  min-height:240px;
}

.shop-page-wrap .shop-info-card{
  grid-area: info !important;
  min-height:240px;
}

.shop-page-wrap .shop-upload-card{
  grid-area: upload !important;
}

.shop-page-wrap .shop-services-card{
  grid-area: services !important;
}

.shop-pill{
  display:inline-block;
  background:#eef8ea;
  color:#5a9f3a;
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  margin-bottom:16px;
}

.shop-title{
  margin:0 0 12px;
  font-size:52px;
  line-height:1.05;
  color:#13284b;
  font-weight:800;
}

.shop-subtitle{
  margin:0;
  color:#617189;
  line-height:1.8;
  font-size:16px;
}

.shop-info-box{
  background:#fbfcfd;
  border:1px solid #e8edf3;
  border-radius:20px;
  padding:22px;
}

.shop-info-box h3{
  margin:0 0 16px;
  font-size:22px;
  color:#162b4d;
}

.shop-info-box p{
  margin:10px 0;
  color:#31425f;
  line-height:1.6;
  font-size:15px;
}

.shop-card h2{
  margin:0 0 12px;
  font-size:24px;
  color:#162b4d;
}

.shop-muted{
  color:#708199;
  font-size:14px;
  line-height:1.7;
  margin-bottom:18px;
}

.default-a4-box{
  margin-bottom:16px;
  border:1px solid #dce7f0;
  border-radius:18px;
  padding:16px;
  background:#f8fbff;
}

.default-a4-box h3{
  margin:0 0 8px;
  color:#1f3152;
  font-size:18px;
}

.default-a4-box p{
  margin:0;
  color:#687991;
  line-height:1.6;
  font-size:14px;
}

.shop-page-wrap .shop-services-grid{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:16px !important;
}

.shop-service-item{
  border:1px solid #e2e9f1;
  border-radius:18px;
  padding:18px;
  background:#fcfdff;
  min-height:150px;
}

.shop-service-item.is-default{
  border:2px solid #32c94a;
  background:#f5fff6;
}

.shop-service-badge{
  display:inline-block;
  margin-bottom:10px;
  padding:6px 10px;
  border-radius:999px;
  background:#edf4ff;
  color:#3b5f95;
  font-size:12px;
  font-weight:700;
}

.shop-service-item.is-default .shop-service-badge{
  background:#e3f8e6;
  color:#299340;
}

.shop-service-item h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.35;
  color:#1c2f52;
}

.shop-service-item .short{
  color:#6a7c94;
  font-size:14px;
  line-height:1.6;
  margin-bottom:8px;
}

.shop-service-item .desc{
  color:#5d6d84;
  font-size:13px;
  line-height:1.65;
}

.upload-box{
  border:2px dashed #d4dfeb;
  border-radius:22px;
  padding:26px 20px;
  background:#fbfcfe;
  text-align:center;
}

.upload-box h3{
  margin:0 0 10px;
  color:#1d2f51;
  font-size:20px;
}

.upload-box p{
  color:#697a92;
  line-height:1.75;
  margin:0 0 18px;
  font-size:15px;
}

.upload-box input[type="file"]{
  width:100%;
  box-sizing:border-box;
  padding:14px;
  border:1px solid #d7e0ea;
  border-radius:14px;
  background:#fff;
  margin-bottom:16px;
}

.upload-actions{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn-green{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 22px;
  border-radius:14px;
  background:#37c948;
  color:#fff;
  text-decoration:none;
  border:none;
  font-weight:700;
  cursor:pointer;
}

.btn-light{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 22px;
  border-radius:14px;
  background:#fff;
  color:#33455f;
  text-decoration:none;
  border:1px solid #d9e3ed;
  font-weight:700;
  cursor:pointer;
}

.upload-note{
  margin-top:16px;
  font-size:13px;
  color:#78889e;
  line-height:1.7;
}

@media (max-width: 1200px){
  .shop-page-wrap .shop-services-grid{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  }
}

@media (max-width: 980px){
  .shop-page-wrap .shop-main-layout{
    grid-template-columns:1fr !important;
    grid-template-areas:
      "hero"
      "info"
      "upload"
      "services" !important;
  }

  .shop-title{
    font-size:40px;
  }

  .shop-page-wrap .shop-services-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}

@media (max-width: 768px){
  .shop-page-wrap{
    padding:0 14px;
    margin:24px auto 40px;
  }

  .shop-page-wrap .shop-card{
    padding:20px;
  }

  .shop-title{
    font-size:31px;
  }

  .shop-page-wrap .shop-services-grid{
    grid-template-columns:1fr !important;
  }
}