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

:root {
    --ink: #09265a;
    --navy: #071d49;
    --blue: #126de8;
    --sky: #eaf6ff;
    --cyan: #64d7ff;
    --gold: #ffb309;
    --orange: #ff6a26;
    --red: #f52828;
    --white: #fff;
    --muted: #597092;
    --line: #dcecff;
    --shadow: 0 22px 55px rgba(10, 54, 125, .13)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: linear-gradient(140deg, #fff 0%, #f4faff 48%, #fff 100%);
    color: var(--ink);
    font-family: 'DM Sans', Arial, sans-serif;
    overflow-x: hidden
}

body:before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -3;
    opacity: .8;
    background: radial-gradient(circle at 7% 20%, rgba(100, 215, 255, .19), transparent 20rem), radial-gradient(circle at 95% 18%, rgba(18, 109, 232, .11), transparent 19rem), radial-gradient(circle at 75% 85%, rgba(255, 179, 9, .08), transparent 25rem)
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: auto
}

.skip {
    position: absolute;
    left: -999px
}

.skip:focus {
    left: 1rem;
    top: 1rem;
    z-index: 100;
    background: white;
    padding: 10px
}

.topline {
    background: var(--navy);
    color: white;
    font-size: .78rem
}

.topline .container {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.topline a {
    color: #bce9ff
}

.topline .mini-links {
    display: flex;
    gap: 18px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(211, 231, 250, .75)
}

.nav {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 145px
}

.logo-wrap {
    width: 64px;
    height: 56px;
    display: grid;
    place-items: center;
    perspective: 300px
}

.brand-logo {
    width: 76px;
    filter: drop-shadow(4px 8px 7px rgba(5, 36, 98, .22));
    transform: rotateY(-10deg) rotateX(7deg);
    animation: logo-float 5s ease-in-out infinite
}

.brand-name {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    font-weight: 800;
    line-height: .9;
    font-size: 1.06rem
}

.brand-name small {
    display: block;
    font: 600 .53rem 'DM Sans', sans-serif;
    letter-spacing: .15em;
    color: var(--orange);
    margin-top: 6px
}

.navlinks {
    display: flex;
    align-items: center;
    gap: 27px;
    font-size: .9rem;
    font-weight: 700
}

.navlinks a {
    position: relative
}

.navlinks a:not(.nav-cta):after {
    content: '';
    height: 2px;
    border-radius: 4px;
    width: 0;
    position: absolute;
    bottom: -8px;
    left: 0;
    background: var(--orange);
    transition: .25s
}

.navlinks a:hover:after,
.navlinks a.active:after {
    width: 100%
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    cursor: pointer;
    border-radius: 100px;
    padding: 13px 20px;
    background: linear-gradient(135deg, #f52a2a, #ff9a0c);
    color: white;
    font: 700 .87rem 'DM Sans', sans-serif;
    box-shadow: 0 10px 22px rgba(242, 83, 24, .25);
    transition: transform .22s, box-shadow .22s
}

.nav-cta:hover,
.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 28px rgba(242, 83, 24, .3)
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 1.45rem;
    color: var(--ink)
}

.hero {
    position: relative;
    min-height: 635px;
    padding: 80px 0 65px;
    display: grid;
    align-items: center;
    overflow: hidden
}

.hero:before {
    content: '';
    position: absolute;
    width: 600px;
    height: 760px;
    right: -120px;
    top: -120px;
    background: linear-gradient(135deg, rgba(18, 109, 232, .13), rgba(100, 215, 255, .03));
    border-radius: 48% 52% 40% 60%;
    transform: rotate(-19deg)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 45px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #126de8;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .72rem;
    font-weight: 800
}

.eyebrow:before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--orange)
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.9rem, 5.5vw, 5.2rem);
    line-height: .99;
    letter-spacing: -.055em;
    margin: 15px 0 23px;
    max-width: 680px
}

h1 em {
    font-style: normal;
    background: linear-gradient(120deg, #0c73e8, #31b9ee);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent
}

.hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 550px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px
}

.button.secondary {
    background: white;
    color: var(--ink);
    box-shadow: inset 0 0 0 1px #b7d8ff, 0 8px 18px rgba(10, 54, 125, .08)
}

.button.secondary:hover {
    box-shadow: inset 0 0 0 1px #85beff, 0 14px 24px rgba(10, 54, 125, .11)
}

.trust-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 42px
}

.trust-item {
    font-size: .77rem;
    font-weight: 700;
    color: #476585;
    display: flex;
    align-items: center;
    gap: 7px
}

.trust-item b {
    color: #ef6c16;
    font-size: 1.1rem
}

.hero-scene {
    position: relative;
    height: 475px;
    perspective: 1000px
}

.hero-photo {
    position: absolute;
    inset: 30px 7px 0 50px;
    overflow: hidden;
    border-radius: 42px 42px 110px 42px;
    box-shadow: -18px 23px 0 #d9f0ff, 0 32px 60px rgba(8, 54, 119, .23);
    transform: rotateY(-5deg) rotateX(2deg)
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-photo:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 29, 73, .15), transparent 55%)
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, .91);
    backdrop-filter: blur(10px);
    border: 1px solid white;
    box-shadow: var(--shadow);
    border-radius: 17px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: levitate 5s ease-in-out infinite
}

.floating-card b {
    font-size: .83rem;
    display: block
}

.floating-card small {
    color: var(--muted);
    font-size: .67rem
}

.card-orb {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--red));
    box-shadow: inset -5px -5px 7px rgba(133, 40, 0, .15)
}

.card-1 {
    left: 0;
    bottom: 62px
}

.card-2 {
    right: -12px;
    top: 0;
    animation-delay: -2.2s
}

.dot-grid {
    position: absolute;
    width: 106px;
    height: 106px;
    bottom: 0;
    right: 15px;
    opacity: .7;
    background-image: radial-gradient(var(--blue) 1.5px, transparent 1.5px);
    background-size: 13px 13px
}

.curtain-shape {
    position: absolute;
    z-index: -1;
    opacity: .13;
    width: 180px;
    height: 400px;
    left: -75px;
    top: 170px;
    background: linear-gradient(90deg, #0d64d8, #77dcff 22%, #126de8 47%, #c8f0ff 73%, #0f64d7);
    border-radius: 0 0 48% 52%;
    filter: blur(.3px);
    transform: skewY(-9deg)
}

.stats {
    position: relative;
    margin: -20px auto 0;
    width: min(1060px, calc(100% - 40px));
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--shadow);
    border: 1px solid white;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    z-index: 2
}

.stat {
    padding: 22px 28px;
    border-right: 1px solid var(--line)
}

.stat:last-child {
    border: 0
}

.stat strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    display: block;
    color: var(--navy)
}

.stat span {
    font-size: .75rem;
    color: var(--muted);
    font-weight: 600
}

.section {
    padding: 10px 0;
    position: relative
}

.section.tint {
    background: linear-gradient(135deg, #f2faff, #fff 60%, #f7fbff)
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 38px
}

.section-heading h2,
.page-intro h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.8vw, 3.3rem);
    line-height: 1.08;
    letter-spacing: -.04em;
    margin: 11px 0 0
}

.section-heading p {
    max-width: 460px;
    color: var(--muted);
    line-height: 1.65;
    margin: 0
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px
}

.category-card {
    position: relative;
    min-height: 245px;
    overflow: hidden;
    border-radius: 22px;
    background: #d7efff;
    box-shadow: 0 12px 25px rgba(28, 90, 151, .1);
    isolation: isolate;
    transition: transform .3s, box-shadow .3s
}

.category-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 22px 34px rgba(28, 90, 151, .18)
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s
}

.category-card:hover img {
    transform: scale(1.1)
}

.category-card:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4, 22, 62, .86), transparent 70%);
    z-index: -1
}

.category-card div {
    position: absolute;
    inset: auto 15px 16px;
    color: white;
    z-index: 1
}

.category-card span {
    font-size: .68rem;
    color: #b9e6ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em
}

.category-card h3 {
    margin: 3px 0 0;
    font-size: 1.02rem
}

.home-products {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 44px;
    align-items: center
}

.product-showcase {
    height: 440px;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow)
}

.product-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.product-showcase:after {
    content: 'Custom-measured. Beautifully fitted.';
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 16px 23px;
    border-radius: 18px 0 0 0;
    color: white;
    background: linear-gradient(135deg, #f52a2a, #ff9c10);
    font-size: .8rem;
    font-weight: 700
}

.benefits {
    display: grid;
    gap: 17px;
    margin: 27px 0
}

.benefit {
    display: flex;
    gap: 15px
}

.benefit-icon {
    flex: 0 0 40px;
    height: 40px;
    border-radius: 12px;
    background: #dff3ff;
    display: grid;
    place-items: center;
    color: #0b70db;
    font-size: 1.1rem
}

.benefit h3 {
    font-size: .95rem;
    margin: 1px 0 5px
}

.benefit p {
    font-size: .82rem;
    line-height: 1.55;
    color: var(--muted);
    margin: 0
}

.gallery-peek {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 18px;
    height: 390px
}

.gallery-peek a {
    overflow: hidden;
    border-radius: 24px;
    position: relative
}

.gallery-peek a:first-child {
    grid-row: span 2
}

.gallery-peek img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform .45s
}

.gallery-peek a:hover img {
    transform: scale(1.06)
}

.gallery-peek a:after {
    content: attr(data-label);
    position: absolute;
    inset: auto 0 0;
    padding: 24px 18px 15px;
    color: white;
    font-size: .86rem;
    font-weight: 700;
    background: linear-gradient(transparent, rgba(7, 29, 73, .78))
}

.cta-band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(115deg, #051946, #0c54b7 58%, #168ce2);
    color: white;
    border-radius: 32px;
    padding: 57px 58px;
    box-shadow: var(--shadow)
}

.cta-band:after {
    content: '';
    position: absolute;
    right: -70px;
    top: -200px;
    width: 420px;
    height: 480px;
    border: 50px solid rgba(109, 221, 255, .18);
    border-radius: 48%;
    transform: rotate(25deg)
}

.cta-band h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    max-width: 600px;
    margin: 10px 0 16px
}

.cta-band p {
    max-width: 530px;
    color: #d3edff;
    line-height: 1.65
}

.cta-band .button {
    position: relative;
    z-index: 1;
    background: white;
    color: var(--navy);
    margin-top: 10px
}



.breadcrumb {
    font-size: .78rem;
    color: #6281a3;
    font-weight: 700
}

.breadcrumb span {
    margin: 0 6px
}

.page-intro {
    max-width: 720px;
    position: relative;
    z-index: 1
}

.page-intro p {
    max-width: 600px;
    margin: 17px 0 0;
    color: var(--muted);
    line-height: 1.7
}

.products-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 35px
}

.product-filter {
    height: max-content;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
    box-shadow: 0 12px 26px rgba(17, 82, 150, .06);
    position: sticky;
    top: 100px
}

.product-filter h3 {
    font-size: 1rem;
    margin-bottom: 14px
}

.product-filter a {
    display: block;
    padding: 10px 2px;
    color: var(--muted);
    font-size: .87rem;
    border-bottom: 1px solid #eff6ff
}

.product-filter a:last-child {
    border: 0
}

.product-filter a:hover {
    color: var(--blue);
    font-weight: 700
}

.product-list {
    display: grid;
    gap: 48px
}

.product-category {
    scroll-margin-top: 120px
}

.product-category>.category-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px
}

.category-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 0
}

.category-title p {
    margin: 0;
    font-size: .78rem;
    color: var(--muted)
}

.subproduct-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.subproduct {
    min-height: 220px;
    border: 1px solid #e1effc;
    background: white;
    border-radius: 18px;
    padding: 13px;
    box-shadow: 0 9px 22px rgba(14, 72, 130, .06);
    transition: .3s
}

.subproduct:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 28px rgba(14, 72, 130, .11)
}

.subproduct img {
    height: 138px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px
}

.subproduct h3 {
    font-size: .87rem;
    margin: 12px 3px 3px
}

.subproduct p {
    font-size: .7rem;
    color: var(--muted);
    margin: 0 3px
}

.gallery-stage {
    height: 510px;
    margin-top: 15px;
    display: grid;
    place-items: center;
    perspective: 1200px;
    overflow: hidden;
    border-radius: 32px;
    background: radial-gradient(circle at 50% 20%, #edf9ff, #bfe6ff 110%);
    position: relative
}

.gallery-stage:before {
    content: 'CATCHY DECORS • KARUR';
    position: absolute;
    top: 26px;
    font-size: .66rem;
    letter-spacing: .22em;
    font-weight: 800;
    color: #4382ad
}

.gallery-ring {
    --rot: 0deg;
    width: 270px;
    height: 344px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform .75s cubic-bezier(.2, .8, .2, 1);
    transform: rotateY(var(--rot))
}

.gallery-slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 34px rgba(7, 45, 97, .26);
    backface-visibility: hidden
}

.gallery-slide:nth-child(1) {
    transform: rotateY(0deg) translateZ(290px)
}

.gallery-slide:nth-child(2) {
    transform: rotateY(72deg) translateZ(290px)
}

.gallery-slide:nth-child(3) {
    transform: rotateY(144deg) translateZ(290px)
}

.gallery-slide:nth-child(4) {
    transform: rotateY(216deg) translateZ(290px)
}

.gallery-slide:nth-child(5) {
    transform: rotateY(288deg) translateZ(290px)
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.gallery-slide span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 16px 15px;
    color: white;
    font-size: .8rem;
    font-weight: 700;
    background: linear-gradient(transparent, rgba(5, 24, 58, .8))
}

.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 22px
}

.round-btn {
    width: 42px;
    height: 42px;
    border: 1px solid #bedfff;
    border-radius: 50%;
    background: white;
    color: var(--blue);
    font-size: 1.15rem;
    cursor: pointer
}

.round-btn:hover {
    background: var(--blue);
    color: white
}

.gallery-note {
    font-size: .78rem;
    color: var(--muted);
    margin: 0 8px
}

.about-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: center
}

.about-photo {
    position: relative
    
}

.about-photo img {
    height: 480px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow)
}

.about-photo:after {
    content: 'Karur, Tamil Nadu';
    position: absolute;
    bottom: 25px;
    right: -18px;
    background: white;
    border-radius: 13px;
    padding: 13px 17px;
    box-shadow: var(--shadow);
    font-size: .75rem;
    font-weight: 800
}

.about-copy p {
    color: var(--muted);
    line-height: 1.75
}

.values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px
}

.value {
    padding: 18px;
    border-radius: 15px;
    background: #f1f9ff
}

.value strong {
    display: block;
    font-size: .87rem;
    margin-bottom: 5px
}

.value span {
    font-size: .73rem;
    color: var(--muted);
    line-height: 1.4
}

.contact-layout {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 34px
}

.contact-card,
.contact-form {
    border-radius: 25px;
    background: white;
    border: 1px solid #e0eefb;
    box-shadow: var(--shadow);
    padding: 34px
}

.contact-card {
    background: linear-gradient(145deg, #061d49, #0d5abe);
    color: white
}

.contact-card h2,
.contact-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.15rem;
    line-height: 1.1
}

.contact-card p {
    color: #cce7ff;
    line-height: 1.65;
    font-size: .88rem
}

.contact-details {
    display: grid;
    gap: 18px;
    margin: 29px 0
}

.contact-detail {
    display: flex;
    gap: 12px
}

.contact-detail i {
    font-style: normal;
    display: grid;
    place-items: center;
    flex: 0 0 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(95, 211, 255, .18)
}

.contact-detail b {
    display: block;
    font-size: .73rem;
    color: #9edcff;
    text-transform: uppercase;
    letter-spacing: .09em
}

.contact-detail span {
    font-size: .83rem;
    display: block;
    margin-top: 3px
}

.contact-card .button {
    background: white;
    color: var(--navy);
    width: 100%
}

.contact-form p {
    color: var(--muted);
    font-size: .85rem;
    line-height: 1.6
}

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

.field {
    margin: 12px 0
}

.field label {
    display: block;
    font-size: .74rem;
    font-weight: 800;
    margin: 0 0 6px
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid #cfe3f7;
    border-radius: 11px;
    padding: 12px;
    font: inherit;
    font-size: .86rem;
    outline: none
}

.field input:focus,
.field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px #dbf0ff
}

.field textarea {
    height: 106px;
    resize: vertical
}

.form-status {
    font-size: .78rem;
    color: #25833f;
    margin: 10px 0 0;
    display: none
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 20px
}

.social-row a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .13);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: .75rem
}

.social-row a:hover {
    background: var(--cyan);
    color: var(--navy)
}

.footer {
    background: #051736;
    color: #c6e3ff;
    margin-top: 105px;
    padding: 56px 0 22px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .8fr .8fr 1.1fr;
    gap: 28px
}

.footer h3 {
    color: white;
    font-size: .88rem;
    margin: 7px 0 16px
}

.footer p,
.footer a {
    font-size: .77rem;
    line-height: 1.8;
    color: #b1d0ed
}

.footer a {
    display: block
}

.footer .brand-name {
    color: white
}

.footer .brand {
    margin-bottom: 12px
}

.footer-bottom {
    border-top: 1px solid rgba(166, 214, 251, .18);
    margin-top: 38px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    font-size: .7rem
}

.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 60;
    width: 61px;
    height: 61px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #28db78, #09a952);
    box-shadow: 0 12px 28px rgba(5, 135, 76, .34), 0 0 0 8px rgba(40, 219, 120, .13);
    color: white;
    font-size: 1.5rem;
    transition: .25s
}

.whatsapp:hover {
    transform: scale(1.08) rotate(-5deg)
}

.whatsapp:before {
    content: '';
    position: absolute;
    top: 13px;
    width: 25px;
    height: 21px;
    border: 2px solid white;
    border-radius: 2px 2px 6px 6px
}

.whatsapp:after {
    content: '';
    position: absolute;
    top: 17px;
    width: 12px;
    height: 13px;
    border-left: 2px solid white;
    border-right: 2px solid white;
    opacity: .8
}

@keyframes logo-float {
    50% {
        transform: rotateY(9deg) rotateX(-4deg) translateY(-4px)
    }
}

@keyframes levitate {
    50% {
        transform: translateY(-10px)
    }
}

@media(max-width:900px) {
    .navlinks {
        gap: 17px
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .products-layout {
        grid-template-columns: 1fr
    }

    .product-filter {
        position: static;
        display: flex;
        align-items: center;
        gap: 13px;
        overflow: auto;
        padding: 13px
    }

    .product-filter h3 {
        margin: 0;
        white-space: nowrap
    }

    .product-filter a {
        padding: 5px 8px;
        border: 0;
        white-space: nowrap
    }

    .subproduct-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr
    }

    .hero {
        min-height: auto
    }

    .hero-grid {
        gap: 15px
    }

    .hero-scene {
        height: 400px
    }

    .about-layout {
        gap: 34px
    }
}

@media(max-width:680px) {
    .container {
        width: min(100% - 28px, 560px)
    }

    .topline {
        display: none
    }

    .nav {
        height: 68px
    }

    .brand-logo {
        width: 66px
    }

    .navlinks {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        padding: 18px 20px 23px;
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 14px 22px rgba(9, 38, 90, .08);
        flex-direction: column;
        align-items: flex-start;
        gap: 20px
    }

    .navlinks.open {
        display: flex
    }

    .menu-toggle {
        display: block
    }

    .hero {
        padding: 61px 0 42px
    }

    .hero-grid {
        grid-template-columns: 1fr
    }

    .hero-scene {
        order: -1;
        height: 315px
    }

    .hero-photo {
        inset: 17px 12px 0 31px;
        border-radius: 28px 28px 72px 28px
    }

    .floating-card {
        padding: 10px
    }

    .card-1 {
        left: 0;
        bottom: 20px
    }

    .card-2 {
        right: 0
    }

    .hero h1 {
        font-size: 3rem
    }

    .hero p {
        font-size: .94rem
    }

    .trust-row {
        margin-top: 27px;
        gap: 14px
    }

    .stats {
        grid-template-columns: 1fr 1fr;
        margin-top: 0
    }

    .stat {
        padding: 17px;
        border-bottom: 1px solid var(--line)
    }

    .stat:nth-child(2) {
        border-right: 0
    }

    .stat:nth-child(3),
    .stat:nth-child(4) {
        border-bottom: 0
    }

    .section {
        padding: 68px 0
    }

    .section-heading {
        display: block;
        margin-bottom: 28px
    }

    .section-heading p {
        margin-top: 15px
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    .category-card {
        min-height: 190px
    }

    .category-card:last-child {
        grid-column: span 2
    }

    .home-products,
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr
    }

    .product-showcase {
        height: 320px
    }

    .gallery-peek {
        height: 380px;
        grid-template-columns: 1fr 1fr
    }

    .cta-band {
        padding: 38px 25px;
        border-radius: 24px
    }

    .page-hero {
        padding: 57px 0
    }

    .products-layout {
        gap: 26px
    }

    .subproduct-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    .subproduct {
        padding: 9px;
        min-height: 190px
    }

    .subproduct img {
        height: 112px
    }

    .category-title p {
        display: none
    }

    .gallery-stage {
        height: 425px
    }

    .gallery-ring {
        transform: scale(.76) rotateY(var(--rot))
    }

    .about-photo img {
        height: 360px
    }

    .contact-card,
    .contact-form {
        padding: 26px 21px
    }

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

    .footer {
        margin-top: 68px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px
    }

    .footer-grid>div:first-child {
        grid-column: span 2
    }

    .footer-bottom {
        display: block;
        line-height: 2
    }

    .whatsapp {
        right: 15px;
        bottom: 15px
    }

    .page-intro h1 {
        font-size: 2.7rem
    }
}