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

:root{
  --pink:#e9368d;
  --pink-dark:#c91d70;
  --blue:#1da9df;
  --ink:#20212a;
  --muted:#6d7180;
  --cream:#fff8fb;
  --line:#f1dce7;
  --white:#fff;
  --shadow:0 18px 50px rgba(40,20,30,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:"DM Sans",sans-serif;color:var(--ink);background:#fff}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1180px,92%);margin:auto}
.topbar{background:var(--ink);color:#fff;font-size:13px;padding:9px 0;text-align:center}
.nav{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.94);backdrop-filter:blur(14px);border-bottom:1px solid #f4e7ed}
.nav-inner{height:78px;display:flex;align-items:center;justify-content:space-between;gap:20px}
.brand img{width:145px;height:auto}
.navlinks{display:flex;align-items:center;gap:28px;font-size:14px;font-weight:600}
.navlinks a:hover{color:var(--pink)}
.nav-actions{display:flex;gap:10px;align-items:center}
.icon-btn,.menu-btn{border:1px solid var(--line);background:#fff;border-radius:50%;width:42px;height:42px;display:grid;place-items:center;cursor:pointer}
.menu-btn{display:none}
.hero{background:linear-gradient(135deg,#fff2f8 0%,#fff 55%,#eefaff 100%);overflow:hidden}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;align-items:center;min-height:620px;gap:40px}
.eyebrow{display:inline-flex;gap:8px;align-items:center;background:#fff;border:1px solid var(--line);padding:8px 13px;border-radius:99px;color:var(--pink-dark);font-weight:700;font-size:12px;letter-spacing:.08em;text-transform:uppercase}
.hero h1{font-family:"Playfair Display",serif;font-size:clamp(46px,6vw,78px);line-height:.98;margin:22px 0 18px;letter-spacing:-.04em}
.hero h1 span{color:var(--pink)}
.hero p{color:var(--muted);font-size:17px;line-height:1.7;max-width:560px}
.ctas{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;padding:14px 20px;border-radius:999px;font-weight:700;border:1px solid transparent;transition:.2s}
.btn-primary{background:var(--pink);color:#fff;box-shadow:0 12px 30px rgba(233,54,141,.25)}
.btn-primary:hover{background:var(--pink-dark);transform:translateY(-2px)}
.btn-light{background:#fff;border-color:var(--line)}
.btn-light:hover{border-color:var(--pink);color:var(--pink)}
.hero-visual{position:relative;height:570px}
.hero-card{position:absolute;background:#fff;padding:10px;border-radius:28px;box-shadow:var(--shadow)}
.hero-card img{width:100%;height:100%;object-fit:cover;border-radius:20px}
.hero-main{width:64%;height:520px;right:8%;top:20px;transform:rotate(2deg)}
.hero-small{width:34%;height:300px;left:2%;bottom:15px;transform:rotate(-6deg)}
.hero-badge{position:absolute;right:0;bottom:35px;background:#fff;padding:14px 17px;border-radius:18px;box-shadow:var(--shadow);font-size:13px;font-weight:700}
.section{padding:82px 0}
.section-soft{background:var(--cream)}
.section-head{display:flex;justify-content:space-between;align-items:end;gap:20px;margin-bottom:32px}
.kicker{font-size:12px;font-weight:800;color:var(--pink);text-transform:uppercase;letter-spacing:.12em}
.section h2{font-family:"Playfair Display",serif;font-size:42px;margin:7px 0 0;letter-spacing:-.03em}
.section-head p{color:var(--muted);max-width:470px;line-height:1.6}
.chips{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:26px}
.chip{border:1px solid var(--line);background:#fff;padding:10px 15px;border-radius:99px;font-weight:700;font-size:13px;cursor:pointer}
.chip.active,.chip:hover{background:var(--pink);border-color:var(--pink);color:#fff}
.grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.card{background:#fff;border:1px solid #f0e4ea;border-radius:22px;overflow:hidden;transition:.25s}
.card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.card-img{aspect-ratio:3/4;overflow:hidden;background:#f6f6f6;position:relative}
.card-img img{width:100%;height:100%;object-fit:cover;transition:.35s}
.card:hover .card-img img{transform:scale(1.03)}
.card-body{padding:17px}
.card-code{font-size:11px;font-weight:800;color:var(--pink);letter-spacing:.08em}
.card h3{font-size:16px;margin:6px 0}
.card-meta{display:flex;justify-content:space-between;gap:10px;color:var(--muted);font-size:12px}
.card .btn{width:100%;margin-top:15px;padding:11px 13px;font-size:13px}
.about-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:50px;align-items:center}
.about-photo{border-radius:30px;overflow:hidden;box-shadow:var(--shadow);height:520px}
.about-photo img{width:100%;height:100%;object-fit:cover}
.about-copy h2{font-family:"Playfair Display",serif;font-size:48px;line-height:1.05;margin:10px 0 18px}
.about-copy p{color:var(--muted);line-height:1.8}
.points{display:grid;grid-template-columns:1fr 1fr;gap:13px;margin:28px 0}
.point{padding:15px;border:1px solid var(--line);border-radius:18px;background:#fff}
.point strong{display:block;margin-bottom:4px}.point span{font-size:13px;color:var(--muted)}
.contact-box{background:var(--ink);color:#fff;border-radius:30px;padding:45px;display:grid;grid-template-columns:1fr 1fr;gap:40px}
.contact-box h2{font-family:"Playfair Display",serif;font-size:45px;margin:8px 0 15px}
.contact-box p{color:#d6d7df;line-height:1.7}
.contact-item{padding:16px 0;border-bottom:1px solid rgba(255,255,255,.13)}
.contact-item small{display:block;color:#aeb0bc;margin-bottom:5px}.contact-item a{color:#fff;font-weight:700}
footer{background:#14151b;color:#bfc1c9;padding:42px 0 22px}
.footer-grid{display:grid;grid-template-columns:1.2fr 1fr 1fr;gap:35px}
footer h4{color:#fff;margin-top:0}footer p{line-height:1.7;font-size:13px}
.footer-bottom{border-top:1px solid #2a2b32;margin-top:30px;padding-top:18px;font-size:12px;display:flex;justify-content:space-between;gap:15px}
.whatsapp{position:fixed;right:22px;bottom:22px;z-index:100;background:#25d366;color:#fff;width:58px;height:58px;border-radius:50%;display:grid;place-items:center;box-shadow:0 12px 30px rgba(0,0,0,.2)}
.page-hero{background:linear-gradient(135deg,#fff1f7,#f4fbff);padding:75px 0}.page-hero h1{font-family:"Playfair Display",serif;font-size:56px;margin:10px 0}.page-hero p{color:var(--muted);max-width:650px;line-height:1.7}
.product-layout{display:grid;grid-template-columns:1fr 1fr;gap:55px;align-items:start}
.product-image{background:#f8f8f8;border-radius:28px;overflow:hidden}.product-image img{width:100%;aspect-ratio:3/4;object-fit:cover}
.product-info .code{color:var(--pink);font-weight:800;font-size:12px;letter-spacing:.1em}.product-info h1{font-family:"Playfair Display",serif;font-size:48px;line-height:1.05;margin:10px 0}.product-info .note{color:var(--muted);line-height:1.7}.info-box{border:1px solid var(--line);padding:18px;border-radius:18px;margin:20px 0}.info-box strong{display:block;margin-bottom:5px}.info-box span{font-size:13px;color:var(--muted)}
.gallery{columns:4 220px;column-gap:18px}.gallery img{width:100%;margin:0 0 18px;border-radius:18px;break-inside:avoid}
.empty{padding:35px;text-align:center;color:var(--muted);border:1px dashed var(--line);border-radius:20px}
@media(max-width:950px){.grid{grid-template-columns:repeat(3,1fr)}.hero-grid{grid-template-columns:1fr}.hero-visual{height:500px}.about-grid,.product-layout{grid-template-columns:1fr}.contact-box{grid-template-columns:1fr}.navlinks{display:none}.menu-btn{display:grid}.nav-actions .icon-btn{display:none}}
@media(max-width:650px){.nav-inner{height:68px}.brand img{width:125px}.hero-grid{min-height:auto;padding:55px 0}.hero h1{font-size:48px}.hero-visual{height:390px}.hero-main{height:350px}.hero-small{height:210px}.section{padding:60px 0}.section h2,.about-copy h2{font-size:36px}.grid{grid-template-columns:repeat(2,1fr);gap:12px}.card-body{padding:12px}.card h3{font-size:14px}.contact-box{padding:28px}.contact-box h2{font-size:36px}.footer-grid{grid-template-columns:1fr}.footer-bottom{display:block}.footer-bottom span{display:block;margin-top:7px}.page-hero h1{font-size:44px}}

.logo-img{max-height:58px;width:auto!important;object-fit:contain}.text-logo{font-weight:800;color:#e9368d;font-size:24px}.text-logo small{display:block;color:#1da9df;font-size:11px}.pagination{}
.map-wrap{overflow:hidden;border-radius:24px;border:1px solid #f0dfe8;box-shadow:0 16px 40px rgba(35,20,30,.08);background:#eee}.map-wrap iframe{display:block;width:100%;height:430px;border:0}.group-filter{display:flex;gap:10px;flex-wrap:wrap}



@media (max-width: 760px){
  .nav{
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .nav-inner{
    position: relative;
  }

  .menu-btn{
    display: grid !important;
    place-items: center;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    padding: 0;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 1002;
  }

  .navlinks{
    display: none !important;
    position: absolute;
    top: calc(100% + 1px);
    left: 4%;
    right: 4%;
    z-index: 1001;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 16px 35px rgba(0,0,0,.14);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .navlinks.mobile-open{
    display: flex !important;
  }

  .navlinks.mobile-open a{
    display: block;
    width: 100%;
    padding: 13px 14px;
    border-radius: 12px;
  }

  .navlinks.mobile-open a:hover{
    background: #fff2f8;
    color: var(--pink);
  }
}

/* FINAL HOSTINGER MOBILE MENU FALLBACK */
@media (max-width:760px){
  .navlinks.mobile-open{display:flex !important;}
  .menu-btn{cursor:pointer !important; pointer-events:auto !important; position:relative; z-index:1005;}
  .navlinks{z-index:1004;}
}

/* Catalogue category presentation */
.category-jump{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.category-tile{display:flex;flex-direction:column;gap:6px;background:#fff;border:1px solid var(--line);border-radius:20px;padding:20px;transition:.2s}
.category-tile:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:#f2bfd6}
.category-tile strong{font-size:17px}.category-tile span{font-size:12px;color:var(--muted);line-height:1.5}.category-tile small{color:var(--pink);font-weight:800;margin-top:5px}
.category-block{padding:72px 0}.category-block:nth-child(even){background:#fff8fb}.category-block .container{width:min(1180px,92%)}
.category-block .section-head{margin-bottom:24px}.category-sub{color:var(--muted);font-size:13px;line-height:1.6;margin:8px 0 0}
.feature-pair{display:grid;grid-template-columns:1fr 1fr;gap:24px}.feature-look{background:#fff;border:1px solid var(--line);border-radius:28px;overflow:hidden;box-shadow:0 12px 35px rgba(40,20,30,.07)}
.feature-image{position:relative;aspect-ratio:4/5;overflow:hidden;background:#f5f5f5}.feature-image img{width:100%;height:100%;object-fit:cover;object-position:center}.feature-tag{position:absolute;top:18px;left:18px;background:#fff;color:var(--pink-dark);padding:9px 13px;border-radius:999px;font-size:11px;font-weight:900;letter-spacing:.08em;box-shadow:0 8px 20px rgba(0,0,0,.08)}.feature-size{position:absolute;right:16px;bottom:16px;background:rgba(255,255,255,.94);padding:9px 12px;border-radius:12px;font-size:11px;font-weight:800}.feature-copy{padding:20px}.feature-copy h3{margin:0 0 5px;font-size:22px}.feature-copy p{margin:0 0 12px;color:var(--muted)}.feature-copy span{color:var(--pink);font-weight:800;font-size:13px}
@media(max-width:800px){.category-jump{grid-template-columns:repeat(2,1fr)}.feature-pair{grid-template-columns:1fr}.category-block{padding:55px 0}}
@media(max-width:520px){.category-jump{grid-template-columns:1fr}.feature-size{left:16px;right:auto}.feature-tag{top:12px;left:12px}}
/* Cover supplier watermark/model-code areas on the two new homepage feature photos */
.feature-image:before{content:"";position:absolute;z-index:2;top:0;left:0;width:31%;height:18%;background:rgba(255,255,255,.86);backdrop-filter:blur(6px);border-radius:0 0 22px 0}
.feature-image:after{content:"";position:absolute;z-index:2;right:0;bottom:0;width:30%;height:13%;background:rgba(255,255,255,.88);backdrop-filter:blur(6px);border-radius:22px 0 0 0}
.feature-look:nth-child(2) .feature-image:before{left:auto;right:0;border-radius:0 0 0 22px}
.feature-tag,.feature-size{z-index:3}
.packing-note{display:flex;flex-wrap:wrap;gap:10px 20px;padding:17px 19px;margin-bottom:22px;background:#fff8fb;border:1px solid var(--line);border-radius:18px;color:var(--muted);font-size:12px;line-height:1.6}.packing-note strong{color:var(--ink);width:100%;font-size:14px}.packing-note span{flex:1 1 320px}

/* FINAL RESPONSIVE CATALOGUE OVERRIDES */
.hero-compact .hero-grid{min-height:460px}
.hero-intro-card{max-width:420px;margin-left:auto;padding:34px;border:1px solid var(--line);border-radius:28px;background:rgba(255,255,255,.9);box-shadow:var(--shadow);display:flex;flex-direction:column;gap:10px}
.hero-intro-card strong{font-family:"Playfair Display",serif;font-size:34px;line-height:1.05}
.hero-intro-card span{color:var(--muted);line-height:1.7}
.hero-intro-badge{width:max-content;padding:8px 12px;border-radius:99px;background:#fff2f8;color:var(--pink-dark);font-size:11px;font-weight:800;letter-spacing:.06em;text-transform:uppercase}
.feature-pair{max-width:900px;margin:0 auto;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
.feature-look{max-width:430px;width:100%;margin:0 auto}
.feature-image{aspect-ratio:3/4;max-height:560px}
.feature-clean-image img{object-fit:cover;object-position:center}
.category-jump{grid-template-columns:repeat(3,minmax(0,1fr))}
.category-tile{min-height:150px;justify-content:center}
.category-block{padding:60px 0}
.category-block .grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.category-empty{min-height:120px;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;gap:7px;padding:30px;border:1px dashed #e7c7d7;border-radius:20px;background:#fff;color:var(--muted)}
.category-empty strong{color:var(--ink)}
.card-img{aspect-ratio:4/5}
.card-body{padding:14px}.card h3{font-size:15px}.card .btn{font-size:12px;padding:10px 11px}
.catalog-toolbar{display:flex;gap:14px;justify-content:space-between;align-items:center;flex-wrap:wrap;margin-bottom:14px}
.catalog-toolbar input{width:min(330px,100%);padding:13px 16px;border:1px solid #f1dce7;border-radius:999px;outline:none}
.catalog-filter{margin-bottom:18px}.catalog-filter select{width:min(420px,100%);padding:12px 16px;border:1px solid #f1dce7;border-radius:999px;background:#fff}
.map-links{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
@media(max-width:1050px){.category-block .grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:800px){.hero-compact .hero-grid{min-height:auto;padding:52px 0}.hero-intro-card{max-width:none;margin:0}.feature-pair{grid-template-columns:1fr;max-width:520px}.feature-look{max-width:520px}.category-jump{grid-template-columns:repeat(2,minmax(0,1fr))}.category-block .grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:650px){.topbar{font-size:10px;padding:8px 12px}.hero h1{font-size:46px}.section{padding:48px 0}.category-block{padding:48px 0}.category-jump{grid-template-columns:1fr}.category-block .grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.card-img{aspect-ratio:4/5}.card-body{padding:10px}.card h3{font-size:13px}.card-meta{font-size:10px}.card .btn{font-size:10px;padding:9px 7px}.feature-image{max-height:500px}}
@media(max-width:430px){.brand img{width:115px}.hero h1{font-size:41px}.category-block .grid{grid-template-columns:repeat(2,minmax(0,1fr))}}

.category-tile{display:flex;flex-direction:column;overflow:hidden;padding:0!important}.category-tile-image{width:100%;aspect-ratio:4/3;background:#faf6f8;overflow:hidden}.category-tile-image img{width:100%;height:100%;object-fit:cover;display:block}.category-tile-copy{display:flex;flex-direction:column;gap:7px;padding:16px 18px 18px}.category-tile-copy strong{font-size:1.05rem}.category-tile-copy span{font-size:.88rem;color:#6d6570}.category-tile-copy small{font-size:.82rem;color:#e9368d;font-weight:700}.category-jump{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.page-addresses{line-height:1.8}@media(max-width:900px){.category-jump{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:600px){.category-jump{grid-template-columns:1fr}.category-tile-image{aspect-ratio:16/10}}

/* FINAL VISUAL + RESPONSIVE FIXES — 2026-08-16 */
.hero-visual{height:560px;position:relative}
.hero-card{padding:9px;background:#fff}
.hero-card img{object-fit:contain;background:#fff}
.hero-main{width:62%;height:520px;right:4%;top:18px;transform:rotate(2deg)}
.hero-small{width:35%;height:300px;left:1%;bottom:12px;transform:rotate(-5deg)}
.hero-intro-card{display:none}

/* The supplied feature artwork is already composed artwork; never add overlays on it. */
.feature-image:before,.feature-image:after{display:none!important}
.feature-image{aspect-ratio:2/3;max-height:none;background:#fff}
.feature-image img{object-fit:contain!important;object-position:center!important;background:#fff}

/* Never crop catalogue posters: show the complete model, footwear and design information. */
.card-img{aspect-ratio:2/3;background:#faf8f9}
.card-img img{object-fit:contain!important;object-position:center!important;background:#faf8f9}
.category-tile-image{aspect-ratio:2/3;background:#faf8f9}
.category-tile-image img{object-fit:contain!important;object-position:center!important;background:#faf8f9}

/* Proper address section on index / about / shop */
.address-section{background:#fff8fb;border-top:1px solid var(--line);padding:54px 0}
.address-heading{display:flex;flex-direction:column;align-items:center;text-align:center;margin-bottom:28px}
.address-heading h2{font-family:"Playfair Display",serif;font-size:38px;line-height:1.08;margin:7px 0 10px}
.address-heading p{max-width:650px;margin:0;color:var(--muted);line-height:1.7}
.address-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.address-card{background:#fff;border:1px solid var(--line);border-radius:22px;padding:24px;min-height:150px;box-shadow:0 10px 30px rgba(40,20,30,.05)}
.address-card span{display:inline-block;color:var(--pink);font-size:11px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;margin-bottom:10px}
.address-card strong{display:block;font-size:18px;margin-bottom:7px}
.address-card p{margin:0;color:var(--muted);line-height:1.65;font-size:14px}

/* Keep about photography visible and complete */
.about-photo{height:auto;min-height:520px;background:#faf8f9}
.about-photo img{width:100%;height:auto;min-height:520px;object-fit:contain;object-position:center;background:#faf8f9}

/* Better product-detail image presentation */
.product-image img{object-fit:contain!important;background:#faf8f9}

/* Mobile / tablet */
@media(max-width:950px){
  .hero-visual{height:500px}
  .hero-main{height:455px;width:65%;right:2%}
  .hero-small{height:260px;width:37%;left:0;bottom:0}
  .address-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:650px){
  .hero-visual{height:390px;margin-top:18px}
  .hero-main{width:67%;height:350px;right:0;top:0}
  .hero-small{width:40%;height:205px;left:0;bottom:0}
  .feature-image{aspect-ratio:2/3}
  .category-tile-image{aspect-ratio:2/3}
  .card-img{aspect-ratio:2/3}
  .address-section{padding:42px 0}
  .address-heading h2{font-size:32px}
  .address-grid{grid-template-columns:1fr;gap:12px}
  .address-card{min-height:0;padding:20px}
  .about-photo,.about-photo img{min-height:0}
}
