:root {
    --red: #ef2929;
    --cream: #fff8f1;
    --cream-light: #fffaf6;
    --cream-section: #fff5eb;
    --text: #282320;
    --text-soft: #645b55;
    --footer-start: #ad0710;
    --footer-middle: #90060c;
    --footer-end: #710307;
    --container: 1240px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    min-height: 100%;
    scroll-behavior: smooth;
    background: var(--cream);
}

html.page-pending body {
    opacity: 0;
}

html.page-ready body {
    opacity: 1;
    transition: opacity 0.35s ease;
}

body {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    font-family: "Nunito", sans-serif;
    color: var(--text);
    background: var(--cream);
}

body[data-page="anasayfa"] {
    background:
        radial-gradient(circle at 76% 28%, rgba(255, 216, 187, 0.24), transparent 34%),
        linear-gradient(180deg, #fffaf6 0%, #fff8f1 16%, #fff5eb 36%, #fff6ed 58%, #fff8f1 100%);
}

.page-content {
    flex: 1 0 auto;
    width: 100%;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    cursor: pointer;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    border: 2px solid var(--cream);
    border-radius: 20px;
    background: rgba(213, 72, 54, 0.55);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(213, 72, 54, 0.8);
}

.top-area {
    width: 100%;
    flex: 0 0 auto;
}

.site-header {
    position: relative;
    z-index: 100;
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 250, 246, 0.72), transparent);
}

.header-container {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transform: rotate(-1deg);
}

.logo-zipzip {
    color: var(--red);
    font-size: 29px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1.5px;
    transition: transform 0.2s ease;
}

.logo-dot {
    position: relative;
    top: -5px;
    display: inline-block;
    margin: 0 1px;
    color: #ff9f1c;
    font-size: 17px;
    transform: rotate(12deg);
}

.logo-hamur {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px 4px;
    border-radius: 7px 7px 7px 2px;
    color: #fff;
    background: var(--red);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.2px;
    transform: rotate(3deg);
    box-shadow: 2px 3px 0 rgba(173, 7, 16, 0.14);
    transition: transform 0.2s ease;
}

.site-logo:hover .logo-zipzip {
    transform: translateY(-1px);
}

.site-logo:hover .logo-hamur {
    transform: rotate(-2deg) scale(1.05);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 43px;
}

.main-nav a {
    position: relative;
    padding: 11px 0;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.2px;
    transition: color 0.2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 34px;
    height: 2px;
    transform: translateX(-50%) scaleX(0);
    border-radius: 20px;
    background: var(--red);
    transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--red);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    background: transparent;
}

.mobile-menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    border-radius: 20px;
    background: var(--red);
}

.hero {
    position: relative;
    width: 100%;
    padding: 4px 0 20px;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
}

.hero-image {
    display: block;
    width: 100%;
    max-width: 1180px;
    height: auto;
    margin-inline: auto;
    object-fit: contain;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    margin-bottom: 25px;
}

.section-title h2 {
    flex: 0 0 auto;
    color: var(--red);
    font-size: 25px;
    line-height: 1.1;
    font-weight: 900;
    text-align: center;
}

.section-title > span {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239, 41, 41, 0.42));
}

.section-title > span:last-child {
    background: linear-gradient(90deg, rgba(239, 41, 41, 0.42), transparent);
}

.products-section {
    padding: 22px 0 42px;
}

.product-card {
    min-height: 390px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    overflow: hidden;
    border: 1px solid rgba(237, 75, 54, 0.22);
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 248, 241, 0.42));
    box-shadow:
        0 24px 60px rgba(105, 43, 16, 0.07),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.product-gallery {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 58%, rgba(255, 226, 204, 0.55), transparent 62%);
}

.product-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82%;
    height: 305px;
    overflow: hidden;
}

.product-stage-glow {
    position: absolute;
    bottom: 30px;
    width: 340px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 221, 198, 0.72), rgba(255, 237, 224, 0.24) 55%, transparent 78%);
}

.product-stage-floor {
    position: absolute;
    bottom: 22px;
    width: 270px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(180deg, #fff1e5, #ffd9c0);
    box-shadow: 0 10px 22px rgba(134, 66, 31, 0.06);
}

.main-product-image {
    position: relative;
    z-index: 5;
    width: auto;
    max-width: 330px;
    max-height: 300px;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: opacity 0.22s ease, transform 0.25s ease;
}

.slider-arrow {
    position: absolute;
    z-index: 10;
    top: 47%;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
    border: 1px solid rgba(237, 63, 45, 0.22);
    border-radius: 50%;
    color: var(--red);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 18px rgba(120, 40, 20, 0.08);
    font-size: 30px;
    line-height: 1;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.slider-arrow:hover {
    color: #fff;
    border-color: var(--red);
    background: var(--red);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.product-thumbnails {
    position: absolute;
    z-index: 10;
    left: 50%;
    bottom: 11px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.thumbnail {
    width: 58px;
    height: 50px;
    padding: 3px;
    overflow: hidden;
    border: 1px solid rgba(236, 66, 47, 0.2);
    border-radius: 8px;
    background: rgba(255, 248, 241, 0.72);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.thumbnail:hover {
    transform: translateY(-2px);
}

.thumbnail.active {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(239, 41, 41, 0.12);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 48px 35px 35px;
}

.product-content h1 {
    margin-top: 4px;
    color: var(--red);
    font-size: clamp(29px, 3vw, 37px);
    line-height: 1.05;
    font-weight: 900;
}

.product-content p {
    max-width: 610px;
    margin-top: 12px;
    color: #433d39;
    font-size: 14px;
    line-height: 1.75;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(236, 75, 53, 0.14);
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 17px;
    border-right: 1px solid rgba(236, 75, 53, 0.16);
}

.product-feature:first-child {
    padding-left: 0;
}

.product-feature:last-child {
    border-right: 0;
}

.feature-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--red);
    background: rgba(239, 41, 41, 0.08);
    font-size: 14px;
}

.product-feature strong {
    display: block;
    font-size: 13px;
    font-weight: 900;
}

.product-feature span {
    display: block;
    margin-top: 2px;
    color: var(--text-soft);
    font-size: 10px;
}

.documents-section {
    padding: 5px 0 38px;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
}

.document-card {
    min-height: 118px;
    padding: 16px;
    border: 1px solid rgba(239, 91, 64, 0.2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 22px rgba(98, 40, 15, 0.04);
    transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.document-card:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 16px 34px rgba(98, 40, 15, 0.08);
}

.document-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
}

.document-heading h3 {
    font-size: 12px;
    line-height: 1.3;
    font-weight: 900;
}

.pdf-icon {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 34px;
    height: 43px;
    padding-bottom: 6px;
    overflow: hidden;
    border-radius: 4px;
    color: #fff;
    background: linear-gradient(145deg, #ff4545, #d71e24);
    font-size: 8px;
    font-weight: 900;
}

.pdf-icon::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 11px;
    height: 11px;
    background: #ffaaa2;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.document-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 8px;
}

.document-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    border: 1px solid rgba(236, 74, 54, 0.28);
    border-radius: 8px;
    color: #2c2724;
    background: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 800;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.document-button:hover {
    color: #fff;
    border-color: var(--red);
    background: var(--red);
}

.download-button {
    color: var(--red);
}

.why-section {
    padding: 25px 0 55px;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr 1.2fr 1.2fr;
    align-items: center;
}

.why-heading {
    padding-right: 32px;
}

.why-heading > span {
    color: var(--red);
    font-size: 10px;
    font-weight: 900;
}

.why-heading h2 {
    margin-top: 2px;
    color: #602219;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 900;
}

.why-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 95px;
    padding: 10px 27px;
}

.why-item::before {
    content: "";
    position: absolute;
    top: 13px;
    bottom: 13px;
    left: 0;
    width: 1px;
    background: rgba(217, 96, 64, 0.25);
}

.why-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    font-size: 20px;
    box-shadow: 0 10px 24px rgba(91, 38, 15, 0.08);
}

.why-green {
    color: #4da23b;
}

.why-orange {
    color: #fff;
    background: linear-gradient(145deg, #ffad1e, #ff8811);
}

.why-yellow {
    color: #f4a800;
}

.why-item h3 {
    color: #592119;
    font-size: 15px;
    font-weight: 900;
}

.why-item p {
    margin-top: 4px;
    color: #665c56;
    font-size: 12px;
    line-height: 1.45;
}

.contact-section {
    width: 100%;
    padding: 55px 0 95px;
}

.contact-page-heading {
    max-width: 650px;
    margin: 0 auto 38px;
    text-align: center;
}

.contact-page-heading > span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.contact-page-heading h1 {
    color: var(--red);
    font-size: clamp(35px, 5vw, 48px);
    line-height: 1.1;
    font-weight: 900;
}

.contact-page-heading p {
    max-width: 540px;
    margin: 12px auto 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.contact-main-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid rgba(237, 75, 54, 0.18);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 24px 60px rgba(104, 42, 16, 0.07);
}

.contact-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 40px 38px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 72px;
    padding: 10px 5px;
    border-bottom: 1px solid rgba(236, 75, 53, 0.12);
}

.contact-item:last-child {
    border-bottom: 0;
}

.contact-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border-radius: 12px;
    color: var(--red);
    background: rgba(239, 41, 41, 0.08);
    font-size: 17px;
}

.contact-item span {
    display: block;
    margin-bottom: 3px;
    color: var(--red);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.contact-item strong,
.contact-item a,
.contact-item address {
    color: #592219;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 800;
}

.contact-item address {
    margin: 0;
    font-style: normal;
}

.contact-item a {
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: var(--red);
}

.contact-map {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    border-left: 1px solid rgba(237, 75, 54, 0.15);
}

.contact-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.site-footer {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    min-height: 150px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(115deg, var(--footer-start) 0%, var(--footer-middle) 48%, var(--footer-end) 100%);
}

.footer-wave {
    position: absolute;
    z-index: 1;
    top: -45px;
    left: -5%;
    width: 110%;
    height: 72px;
    border-radius: 0 0 50% 50%;
    background: var(--cream);
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 0.75fr 1.65fr 0.85fr;
    align-items: center;
    gap: 25px;
    min-height: 150px;
    padding-top: 38px;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    width: 105px;
    height: auto;
}

.footer-center {
    text-align: center;
}

.footer-center p {
    font-size: 13px;
    line-height: 1.4;
    white-space: nowrap;
}

.footer-note {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.45;
    opacity: 0.92;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 50%;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social a i {
    font-size: 24px;
    line-height: 1;
}

.footer-social a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.pdf-modal {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.pdf-modal.open {
    display: flex;
}

.pdf-overlay {
    position: absolute;
    inset: 0;
    background: rgba(55, 18, 11, 0.66);
    backdrop-filter: blur(6px);
}

.pdf-dialog {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: min(1050px, 96vw);
    height: min(820px, 92vh);
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 35px 90px rgba(36, 8, 4, 0.34);
}

.pdf-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 72px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(110, 40, 25, 0.08);
    background: linear-gradient(180deg, #fffdfb, #fffaf6);
}

.pdf-modal-header span {
    display: block;
    color: var(--red);
    font-size: 9px;
    letter-spacing: 0.7px;
    font-weight: 900;
}

.pdf-modal-header h3 {
    margin-top: 3px;
    overflow: hidden;
    color: #682018;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pdf-close {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--red);
    background: #fff0ea;
    font-size: 26px;
    line-height: 1;
}

.pdf-close:hover {
    color: #fff;
    background: var(--red);
}

.pdf-body {
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px 18px 35px;
    background: linear-gradient(180deg, #eee, #e7e7e7);
}

.pdf-viewer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.pdf-page {
    width: min(850px, 100%);
    overflow: hidden;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.pdf-page canvas {
    display: block;
    width: 100%;
    height: auto;
}

.pdf-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-height: 70px;
    padding: 13px 20px;
    border-top: 1px solid rgba(110, 40, 25, 0.08);
    background: #fffdfb;
}

.pdf-modal-footer a,
.pdf-modal-footer button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 42px;
    padding: 0 17px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
}

.pdf-modal-footer a {
    color: #fff;
    background: linear-gradient(135deg, #f53232, #df2025);
}

.pdf-modal-footer button {
    border: 1px solid #dedbd9;
    color: #332b27;
    background: #fff;
}

.pdf-body::-webkit-scrollbar {
    width: 9px;
}

.pdf-body::-webkit-scrollbar-track {
    background: #e8e8e8;
}

.pdf-body::-webkit-scrollbar-thumb {
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    background: #bbb;
}

body[data-page="iletisim"] {
    background:
        radial-gradient(circle at 76% 20%, rgba(255, 216, 187, 0.22), transparent 30%),
        linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 55%, var(--cream-section) 100%);
}

@media (max-width: 1050px) {
    .hero-image {
        max-width: 980px;
    }

    .product-card {
        grid-template-columns: 0.9fr 1.1fr;
    }

    .main-product-image {
        max-width: 285px;
        max-height: 270px;
    }

    .product-content {
        padding: 32px 25px;
    }

    .product-features {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 14px;
    }

    .product-feature:nth-child(2) {
        border-right: 0;
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-heading {
        grid-column: 1 / -1;
        padding: 0 0 14px;
        text-align: center;
    }

    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .contact-main-card {
        grid-template-columns: 1fr;
    }

    .contact-details {
        padding: 30px;
    }

    .contact-map {
        min-height: 350px;
        border-left: 0;
        border-top: 1px solid rgba(237, 75, 54, 0.15);
    }
}

@media (max-width: 768px) {
    .container {
        width: calc(100% - 24px);
    }

    .header-container {
        height: 66px;
    }

    .mobile-menu-button {
        display: block;
    }

    .main-nav {
        position: absolute;
        z-index: 500;
        top: 65px;
        right: 12px;
        left: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 7px;
        border: 1px solid rgba(239, 41, 41, 0.14);
        border-radius: 12px;
        background: rgba(255, 248, 241, 0.98);
        box-shadow: 0 15px 35px rgba(74, 28, 12, 0.1);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 12px 10px;
    }

    .main-nav a::after,
    .main-nav a.active::after {
        display: none;
    }

    .hero {
        padding: 4px 0 14px;
    }

    .hero-container {
        padding: 0 8px;
    }

    .hero-image {
        max-width: 100%;
        margin: 0;
    }

    .section-title {
        gap: 8px;
        margin-bottom: 18px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .section-title > span {
        width: 38px;
    }

    .products-section {
        padding: 18px 0 28px;
    }

    .product-card {
        min-height: 0;
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .product-gallery {
        min-height: 340px;
        border-bottom: 1px solid rgba(236, 76, 54, 0.12);
    }

    .product-stage {
        width: 88%;
        height: 275px;
    }

    .main-product-image {
        max-width: 260px;
        max-height: 255px;
    }

    .product-stage-glow {
        width: 270px;
        height: 175px;
    }

    .product-stage-floor {
        width: 220px;
        height: 62px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .product-content {
        padding: 27px 19px 30px;
    }

    .product-content h1 {
        font-size: 27px;
    }

    .product-content p {
        font-size: 12px;
    }

    .product-feature {
        padding: 0 8px;
    }

    .documents-section {
        padding: 8px 0 28px;
    }

    .documents-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .document-card {
        min-height: 0;
        padding: 11px;
    }

    .why-section {
        padding: 38px 0 60px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .why-heading {
        padding: 0;
        margin-bottom: 12px;
        text-align: left;
    }

    .why-heading h2 {
        font-size: 22px;
    }

    .why-item {
        min-height: 70px;
        padding: 10px 0;
    }

    .why-item::before {
        display: none;
    }

    .why-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .contact-section {
        padding: 35px 0 75px;
    }

    .contact-page-heading {
        margin-bottom: 25px;
    }

    .contact-page-heading h1 {
        font-size: 34px;
    }

    .contact-page-heading p {
        max-width: 330px;
        font-size: 12px;
    }

    .contact-main-card {
        border-radius: 18px;
    }

    .contact-details {
        gap: 2px;
        padding: 22px 18px;
    }

    .contact-item {
        gap: 13px;
        min-height: 68px;
    }

    .contact-icon {
        width: 39px;
        height: 39px;
        border-radius: 10px;
        font-size: 15px;
    }

    .contact-item strong,
    .contact-item a,
    .contact-item address {
        font-size: 12px;
    }

    .contact-map {
        min-height: 300px;
    }

    .site-footer,
    .footer-container {
        min-height: 220px;
    }

    .footer-wave {
        top: -28px;
        left: -12%;
        width: 124%;
        height: 50px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 43px 0 28px;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer-center p {
        font-size: 11px;
        white-space: nowrap;
    }

    .footer-note {
        max-width: 310px;
        margin: 5px auto 0;
        font-size: 9px;
        line-height: 1.5;
    }

    .footer-social {
        justify-content: center;
        gap: 12px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
    }

    .footer-social a i {
        font-size: 23px;
    }

    .pdf-modal {
        padding: 8px;
    }

    .pdf-dialog {
        width: 100%;
        height: 94dvh;
        border-radius: 13px;
    }

    .pdf-modal-header {
        min-height: 62px;
        padding: 11px 13px;
    }

    .pdf-modal-header h3 {
        max-width: calc(100vw - 100px);
        font-size: 15px;
    }

    .pdf-close {
        width: 36px;
        height: 36px;
        font-size: 23px;
    }

    .pdf-body {
        padding: 13px 8px 25px;
    }

    .pdf-viewer {
        gap: 12px;
    }

    .pdf-page {
        width: 100%;
    }

    .pdf-modal-footer {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 67px;
        padding: 11px;
    }

    .pdf-modal-footer a,
    .pdf-modal-footer button {
        width: 100%;
        min-width: 0;
        padding: 0 8px;
    }
}

@media (max-width: 430px) {
    .container {
        width: calc(100% - 20px);
    }

    .hero-container {
        padding: 0 5px;
    }

    .main-product-image {
        max-width: 235px;
        max-height: 235px;
    }

    .product-gallery {
        min-height: 315px;
    }

    .product-stage {
        height: 250px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
    }

    .product-features {
        grid-template-columns: 1fr 1fr;
    }

    .why-section {
        padding-bottom: 55px;
    }

    .contact-section {
        padding-top: 28px;
    }

    .contact-page-heading h1 {
        font-size: 31px;
    }

    .contact-details {
        padding: 18px 14px;
    }

    .contact-item {
        align-items: flex-start;
        padding: 12px 3px;
    }

    .contact-icon {
        margin-top: 1px;
    }

    .contact-map {
        min-height: 260px;
    }

    .site-footer,
    .footer-container {
        min-height: 215px;
    }

    .footer-wave {
        top: -24px;
        left: -14%;
        width: 128%;
        height: 44px;
    }

    .footer-container {
        gap: 14px;
        padding: 39px 0 25px;
    }

    .footer-logo {
        width: 98px;
    }

    .footer-center p {
        font-size: 10px;
    }

    .footer-note {
        font-size: 8.5px;
    }

    .footer-social {
        justify-content: center;
        gap: 16px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .footer-social a i {
        font-size: 22px;
    }
}
