.inner-page {
    background: var(--cream);
}

.sidebar-nav a.active {
    color: var(--gold);
}

.inner-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--navy);
}

.inner-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 58px;
    background: var(--cream);
    clip-path: ellipse(58% 42% at 50% 100%);
}

.inner-hero-shape {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(216, 189, 124, .22);
}

.inner-hero-shape-one {
    width: 420px;
    height: 420px;
    right: -110px;
    top: -190px;
}

.inner-hero-shape-two {
    width: 280px;
    height: 280px;
    right: 80px;
    bottom: -190px;
    background: rgba(201, 220, 235, .06);
}

.inner-hero-content {
    position: relative;
    z-index: 1;
    padding-block: 90px 120px;
}

.inner-hero h1 {
    margin: 18px 0 14px;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.05;
}

.inner-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
    line-height: 1.75;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    font-weight: 600;
}

.breadcrumb a {
    transition: color .25s;
}

.breadcrumb a:hover,
.breadcrumb span {
    color: var(--gold);
}

.breadcrumb i {
    font-size: 9px;
}

.inner-section {
    padding: 120px 0;
}

.about-intro {
    background: var(--cream);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: clamp(55px, 7vw, 115px);
}

.about-intro-image {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
    padding: 55px;
    background: var(--ice);
    border-radius: 34px 34px 120px 34px;
}

.about-intro-image::before {
    content: "";
    position: absolute;
    width: 92px;
    height: 92px;
    left: -18px;
    bottom: -18px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: .6;
}

.about-intro-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 420px;
    object-fit: contain;
}

.eyebrow {
    display: block;
    margin-bottom: 15px;
    color: #b2934f;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.about-intro-copy h2,
.inner-heading h2,
.about-cta h2 {
    margin: 0;
    font-size: clamp(33px, 3.4vw, 50px);
    line-height: 1.15;
}

.about-intro-copy p {
    margin: 24px 0 0;
    color: #41455f;
    font-size: 16px;
    line-height: 1.85;
}

.about-values {
    background: var(--soft);
}

.inner-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card {
    min-height: 315px;
    padding: 48px 38px;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(25, 31, 76, .06);
    border-radius: 26px;
    box-shadow: 0 13px 35px rgba(25, 31, 76, .07);
    transition: transform .25s, box-shadow .25s;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(25, 31, 76, .11);
}

.value-card i {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    margin: 0 auto 27px;
    color: var(--navy);
    background: var(--ice);
    border-radius: 50%;
    font-size: 29px;
}

.value-card h3 {
    margin: 0 0 15px;
    font-size: 21px;
}

.value-card p {
    margin: 0;
    color: #61657b;
    font-size: 14px;
    line-height: 1.75;
}

.about-cta {
    padding: 85px 0;
    background: var(--ice);
}

.about-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-cta h2 {
    max-width: 820px;
    font-size: clamp(30px, 3vw, 43px);
}

.about-cta .navy-button {
    flex: 0 0 auto;
}

/* Products */
.product-list-section {
    background: var(--cream);
}

/* Category Filter */
.product-filter {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 55px;
}

.product-filter-link,
.product-filter-dropdown > summary {
    min-height: 43px;
    padding: 11px 24px;
    border: 1px solid #d8dce5;
    border-radius: 30px;
    color: var(--navy);
    background: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 19px;
    transition:
        color .25s,
        background-color .25s,
        border-color .25s;
}

.product-filter-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-filter-link:hover,
.product-filter-link.active {
    color: var(--gold);
    background: var(--navy);
    border-color: var(--navy);
}

/* Dropdown */
.product-filter-dropdown {
    position: relative;
}

.product-filter-dropdown > summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.product-filter-dropdown > summary::-webkit-details-marker {
    display: none;
}

.product-filter-dropdown > summary i {
    font-size: 10px;
    transition: transform .25s;
}

.product-filter-dropdown[open] > summary i {
    transform: rotate(180deg);
}

.product-filter-dropdown.active > summary,
.product-filter-dropdown[open] > summary,
.product-filter-dropdown > summary:hover {
    color: var(--gold);
    background: var(--navy);
    border-color: var(--navy);
}

.product-filter-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    width: 245px;
    padding: 9px;
    border: 1px solid rgba(25, 31, 76, .1);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(25, 31, 76, .14);
    transform: translateX(-50%);
}

.product-filter-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    border-top: 1px solid rgba(25, 31, 76, .1);
    border-left: 1px solid rgba(25, 31, 76, .1);
    background: #fff;
    transform: translateX(-50%) rotate(45deg);
}

.product-filter-dropdown-menu a {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 11px 13px;
    padding-left: calc(13px + (var(--category-depth, 0) * 14px));
    border: 0;
    border-radius: 9px;
    color: var(--navy);
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    transition:
        color .2s,
        background-color .2s;
}

.product-filter-dropdown-menu a:first-child {
    display: block;
    margin-bottom: 6px;
    padding: 12px 13px;
    border-bottom: 1px solid #edf0f4;
    border-radius: 9px;
}

.product-filter-dropdown-menu a:first-child span {
    display: block;
    font-weight: 700;
}

.product-filter-dropdown-menu a:first-child small {
    display: block;
    margin-top: 2px;
    color: #9799a5;
    font-size: 10px;
}

.product-filter-dropdown-menu a i {
    color: var(--gold);
    font-size: 9px;
    transform: rotate(90deg);
}

.product-filter-dropdown-menu a:hover,
.product-filter-dropdown-menu a.active {
    color: var(--gold);
    background: var(--navy);
}

.product-filter-dropdown-menu a:hover small,
.product-filter-dropdown-menu a.active small {
    color: rgba(255, 255, 255, .7);
}

/* Product Grid */
.product-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 28px;
}

.product-list-card {
    display: block;
}

.product-list-card .product-image {
    height: 330px;
    overflow: hidden;
    background: #fff;
    transition:
        transform .25s,
        box-shadow .25s;
}

.product-list-card .product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-image-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: #b5b7c0;
    background: #f4f5f7;
    font-size: 42px;
}

.product-list-card:hover .product-image {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(32, 48, 93, .16);
}

.product-list-card h2 {
    margin: 25px 0 7px;
    color: #101010;
    text-align: center;
    font-size: 17px;
}

.product-list-card > span {
    display: block;
    color: #9799a5;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 70px;
}

.pagination a,
.pagination span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid #dfe2e9;
    border-radius: 50%;
    color: var(--navy);
    background: #fff;
    font-size: 13px;
    font-weight: 700;
}

.pagination a.active,
.pagination a:hover {
    color: var(--gold);
    background: var(--navy);
    border-color: var(--navy);
}

.pagination span.disabled {
    cursor: not-allowed;
    opacity: .45;
}

/* Responsive */
@media (max-width: 1199px) {
    .product-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .product-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-filter-dropdown-menu {
        left: auto;
        right: 0;
        transform: none;
    }

    .product-filter-dropdown-menu::before {
        right: 30px;
        left: auto;
        transform: rotate(45deg);
    }
}

@media (max-width: 767px) {
    .product-filter {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: 40px;
    }

    .product-filter-link,
    .product-filter-dropdown,
    .product-filter-dropdown > summary {
        width: 100%;
    }

    .product-filter-dropdown-menu {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        width: 100%;
        margin-top: 8px;
        transform: none;
    }

    .product-filter-dropdown-menu::before {
        display: none;
    }
}

@media (max-width: 575px) {
    .product-filter {
        grid-template-columns: 1fr;
    }

    .product-list-grid {
        grid-template-columns: 1fr;
    }

    .product-list-card .product-image {
        height: 360px;
    }
}
.product-detail-section {
    background: var(--cream);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(55px, 7vw, 110px);
    align-items: center;
}

/* Gallery */
.product-detail-media {
    position: relative;
    min-width: 0;
    padding: 35px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(25, 31, 76, .09);
}

.product-detail-media::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 18px;
    border: 1px solid rgba(216, 189, 124, .45);
    border-radius: 22px;
    pointer-events: none;
}

.product-detail-gallery {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.product-gallery-main {
    display: grid;
    width: 100%;
    height: 455px;
    padding: 25px;
    place-items: center;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
}

.product-gallery-main img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 405px;
    object-fit: contain;
    opacity: 1;
    transform: scale(1);
    transition:
        opacity .18s ease,
        transform .3s ease;
}

.product-gallery-main img.is-changing {
    opacity: 0;
    transform: scale(.97);
}

.product-gallery-thumbs {
    display: flex;
    gap: 11px;
    width: 100%;
    margin-top: 20px;
    padding: 4px 2px 6px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) #edf0f4;
}

.product-gallery-thumbs::-webkit-scrollbar {
    height: 5px;
}

.product-gallery-thumbs::-webkit-scrollbar-track {
    border-radius: 20px;
    background: #edf0f4;
}

.product-gallery-thumbs::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: var(--gold);
}

.product-gallery-thumb {
    position: relative;
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    padding: 6px;
    overflow: hidden;
    border: 1px solid #dfe2e9;
    border-radius: 13px;
    outline: none;
    cursor: pointer;
    background: #fff;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.product-gallery-thumb::after {
    content: "";
    position: absolute;
    right: 8px;
    bottom: 6px;
    left: 8px;
    height: 2px;
    border-radius: 10px;
    background: transparent;
}

.product-gallery-thumb:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.product-gallery-thumb.active {
    border-color: var(--navy);
    box-shadow: 0 5px 14px rgba(25, 31, 76, .14);
}

.product-gallery-thumb.active::after {
    background: var(--gold);
}

.product-gallery-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: contain;
}

.product-gallery-empty {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 520px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #989ba8;
}

.product-gallery-empty i {
    font-size: 52px;
}

/* Product Copy */
.product-detail-copy {
    min-width: 0;
}

.product-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 19px;
}

.product-detail-copy .product-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 9px 14px;
    border: 1px solid rgba(216, 189, 124, .45);
    border-radius: 30px;
    color: #9b7d3d;
    background: rgba(216, 189, 124, .09);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    line-height: 1;
    text-transform: uppercase;
    transition:
        color .2s,
        background-color .2s,
        border-color .2s;
}

.product-detail-copy .product-category:hover {
    color: var(--gold);
    background: var(--navy);
    border-color: var(--navy);
}

.product-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 36px;
    padding: 6px 13px 6px 10px;
    border: 1px solid #e1e4eb;
    border-radius: 30px;
    color: var(--navy);
    background: #fff;
}

.product-brand > i {
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 50%;
    color: var(--navy);
    background: var(--ice);
    font-size: 10px;
}

.product-brand > span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-brand small {
    color: #9295a3;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-brand strong {
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
}

.product-detail-copy h1 {
    margin: 20px 0 20px;
    color: #101010;
    font-size: clamp(35px, 4vw, 54px);
    line-height: 1.1;
}

.product-main-description {
    margin: 0 0 30px;
    color: #53576d;
    font-size: 16px;
    line-height: 1.85;
}

.product-features {
    display: grid;
    grid-template-columns: 1fr ;
    gap: 15px 22px;
    margin: 0 0 38px;
    padding: 0;
    list-style: none;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #343850;
    font-size: 14px;
    font-weight: 600;
}

.product-features li > i {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--navy);
    background: var(--ice);
    font-size: 11px;
}

.product-detail-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 22px;
    color: #888b99;
    font-size: 12px;
    line-height: 1.6;
}

.product-detail-note i {
    margin-top: 3px;
    color: var(--gold);
}

/* Information */
.product-info-section {
    background: var(--soft);
}

.product-info-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 85px;
    align-items: start;
}

.product-info-grid h2 {
    font-size: clamp(30px, 3vw, 43px);
    line-height: 1.2;
}

.product-info-content p {
    margin: 0 0 20px;
    color: #53576d;
    font-size: 15px;
    line-height: 1.85;
}

/* Related Products */
.related-products {
    background: #fff;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.related-products-grid .product-image {
    height: 310px;
    overflow: hidden;
}

.related-products-grid .product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-products-action {
    margin-top: 60px;
    text-align: center;
}

/* Responsive */
@media (max-width: 1199px) {
    .product-detail-grid {
        gap: 50px;
    }

    .product-detail-media {
        padding: 30px;
    }

    .product-gallery-main {
        height: 400px;
    }
}

@media (max-width: 991px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-media {
        max-width: 680px;
        width: 100%;
        margin: 0 auto;
    }

    .product-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .product-detail-media {
        padding: 25px;
        border-radius: 22px;
    }

    .product-detail-media::before {
        inset: 12px;
        border-radius: 17px;
    }

    .product-gallery-main {
        height: 350px;
        padding: 15px;
    }

    .product-gallery-thumb {
        width: 68px;
        height: 68px;
        flex-basis: 68px;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

    .related-products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .product-gallery-main {
        height: 300px;
    }

    .product-detail-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-detail-copy h1 {
        font-size: 34px;
    }
}
@media (max-width: 1100px) {
    .inner-hero {
        min-height: 360px;
    }

    .about-intro-grid {
        gap: 50px;
    }

    .about-intro-image {
        min-height: 420px;
        padding: 40px;
    }

    .value-card {
        padding: 40px 28px;
    }

    .product-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-list-card .product-image {
        height: 300px;
    }

    .product-detail-media {
        min-height: 500px;
        padding: 50px;
    }

    .related-products-grid .product-image {
        height: 280px;
    }
}

@media (max-width: 900px) {
    .inner-hero {
        min-height: 330px;
    }

    .inner-hero-content {
        padding-block: 90px 105px;
    }

    .inner-section {
        padding: 85px 0;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
    }

    .about-intro-image {
        width: min(100%, 650px);
        min-height: 390px;
        margin: auto;
        order: 2;
    }

    .about-intro-copy {
        order: 1;
    }

    .value-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: auto;
    }

    .value-card {
        min-height: auto;
    }

    .about-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-detail-grid,
    .product-info-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .product-detail-media {
        width: min(100%, 650px);
        margin: auto;
    }

    .related-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .related-products-grid .product-list-card:last-child {
        display: none;
    }
}

@media (max-width: 600px) {
    .inner-hero {
        min-height: 300px;
    }

    .inner-hero::after {
        height: 34px;
    }

    .inner-hero-content {
        padding-block: 85px 90px;
    }

    .inner-hero h1 {
        margin-top: 15px;
        font-size: 38px;
    }

    .inner-hero p {
        font-size: 14px;
        line-height: 1.65;
    }

    .inner-hero-shape-one {
        width: 260px;
        height: 260px;
    }

    .inner-section {
        padding: 70px 0;
    }

    .about-intro-grid {
        gap: 40px;
    }

    .about-intro-image {
        min-height: 300px;
        padding: 28px;
        border-radius: 24px 24px 70px 24px;
    }

    .about-intro-image::before {
        width: 60px;
        height: 60px;
    }

    .about-intro-copy h2,
    .inner-heading h2 {
        font-size: 30px;
    }

    .about-intro-copy p {
        margin-top: 19px;
        font-size: 14px;
        line-height: 1.75;
    }

    .inner-heading {
        margin-bottom: 38px;
    }

    .value-grid {
        gap: 18px;
    }

    .value-card {
        padding: 35px 24px;
        border-radius: 20px;
    }

    .value-card i {
        width: 64px;
        height: 64px;
        margin-bottom: 22px;
        font-size: 24px;
    }

    .about-cta {
        padding: 65px 0;
    }

    .about-cta-inner {
        gap: 30px;
    }

    .product-filter {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        margin: 0 -18px 40px;
        padding: 0 18px 10px;
        scrollbar-width: none;
    }

    .product-filter::-webkit-scrollbar {
        display: none;
    }

    .product-filter a {
        flex: 0 0 auto;
        padding: 9px 18px;
        font-size: 12px;
    }

    .product-list-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px 14px;
    }

    .product-list-card .product-image {
        height: 220px;
        padding: 18px;
    }

    .product-list-card h2 {
        margin-top: 18px;
        font-size: 14px;
    }

    .pagination {
        margin-top: 50px;
    }

    .product-detail-media {
        min-height: 360px;
        padding: 38px;
        border-radius: 22px;
    }

    .product-detail-media::before {
        inset: 15px;
    }

    .product-detail-copy h1 {
        font-size: 34px;
    }

    .product-detail-copy>p {
        font-size: 14px;
        line-height: 1.75;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

    .product-info-grid {
        gap: 28px;
    }

    .related-products-grid {
        gap: 14px;
    }

    .related-products-grid .product-image {
        height: 220px;
        padding: 18px;
    }

    .related-products-action {
        margin-top: 45px;
    }
}

/* Contact */
.contact-section {
    background: var(--cream);
}

.contact-layout {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: clamp(45px, 6vw, 90px);
    align-items: start;
}

.contact-heading {
    margin-bottom: 38px;
}

.contact-heading h2 {
    margin: 0 0 18px;
    font-size: clamp(33px, 3.5vw, 48px);
    line-height: 1.15;
}

.contact-heading p {
    margin: 0;
    color: #626678;
    font-size: 14px;
    line-height: 1.8;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 17px;
}

.contact-card {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 25px 22px;
    color: var(--navy);
    background: #fff;
    border: 1px solid rgba(25, 31, 76, .06);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(25, 31, 76, .07);
    transition: transform .25s, box-shadow .25s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 13px 30px rgba(25, 31, 76, .11);
}

.contact-card i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    color: var(--navy);
    background: var(--ice);
    border-radius: 50%;
    font-size: 17px;
}

.contact-card-content {
    min-width: 0;
}

.contact-card span {
    display: block;
    margin-bottom: 7px;
    color: #9a9ca8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-card strong {
    display: block;
    overflow-wrap: anywhere;
    font-size: 13px;
    line-height: 1.55;
}

.contact-address {
    grid-column: 1 / -1;
}

.contact-form-wrap {
    padding: clamp(35px, 5vw, 58px);
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 15px 42px rgba(25, 31, 76, .1);
}

.contact-form-wrap h2 {
    margin: 0 0 8px;
    font-size: 31px;
}

.contact-form-wrap>p {
    margin: 0 0 32px;
    color: #858794;
    font-size: 13px;
    line-height: 1.7;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.form-group {
    min-width: 0;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: #44485e;
    font-size: 12px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #dde1e8;
    outline: 0;
    color: var(--navy);
    background: #fbfcfd;
    border-radius: 8px;
    font: inherit;
    font-size: 13px;
    transition: border-color .25s, box-shadow .25s;
}

.form-group input,
.form-group select {
    height: 52px;
    padding: 0 16px;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
    padding: 15px 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(216, 189, 124, .15);
}

.contact-form .navy-button {
    border: 0;
    cursor: pointer;
    justify-self: start;
}

.contact-map-section {
    padding: 0 0 120px;
    background: var(--cream);
}

.contact-map {
    height: 480px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 13px 38px rgba(25, 31, 76, .11);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* Policies */
.policy-section {
    background: var(--cream);
}

.policy-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: clamp(45px, 6vw, 90px);
    align-items: start;
}

.policy-sidebar {
    position: sticky;
    top: 30px;
    overflow: hidden;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 10px 32px rgba(25, 31, 76, .09);
}

.policy-sidebar-title {
    padding: 25px 27px;
    color: var(--gold);
    background: var(--navy);
    font-size: 17px;
    font-weight: 800;
}

.policy-nav {
    display: flex;
    flex-direction: column;
    padding: 13px;
}

.policy-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 16px 14px;
    border-bottom: 1px solid #eceef2;
    color: #575b70;
    font-size: 13px;
    font-weight: 650;
    transition: color .25s, background .25s;
}

.policy-nav a:last-child {
    border-bottom: 0;
}

.policy-nav a i {
    color: #b8bac3;
    font-size: 10px;
}

.policy-nav a:hover,
.policy-nav a.active {
    color: var(--navy);
    background: var(--soft);
}

.policy-nav a.active i {
    color: var(--gold);
}

.policy-content {
    min-width: 0;
    padding: clamp(35px, 5vw, 65px);
    background: #fff;
    border-radius: 26px;
    box-shadow: 0 12px 38px rgba(25, 31, 76, .08);
}

.policy-content-header {
    margin-bottom: 38px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e7e9ee;
}

.policy-content h1 {
    margin: 0 0 13px;
    font-size: clamp(31px, 3.4vw, 46px);
    line-height: 1.15;
}

.policy-updated {
    color: #999ba6;
    font-size: 11px;
    font-weight: 650;
}

.policy-content h2 {
    margin: 38px 0 14px;
    color: var(--navy);
    font-size: 21px;
    line-height: 1.35;
}

.policy-content h3 {
    margin: 28px 0 12px;
    font-size: 17px;
}

.policy-content p,
.policy-content li {
    color: #5d6174;
    font-size: 14px;
    line-height: 1.9;
}

.policy-content p {
    margin: 0 0 18px;
}

.policy-content ul,
.policy-content ol {
    margin: 15px 0 22px;
    padding-left: 22px;
}

.policy-content li {
    margin-bottom: 9px;
    padding-left: 4px;
}

.policy-contact-box {
    margin-top: 38px;
    padding: 27px 30px;
    background: var(--ice);
    border-radius: 16px;
}

.policy-contact-box strong {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
}

.policy-contact-box a {
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

/* Tips */
.tips-page-section {
    background: var(--cream);
}

.tips-page-intro {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.tips-page-intro h2 {
    margin: 0 0 18px;
    font-size: clamp(32px, 3.6vw, 48px);
    line-height: 1.15;
}

.tips-page-intro p {
    margin: 0;
    color: #666a7d;
    font-size: 15px;
    line-height: 1.8;
}

.tips-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.tips-page-card {
    position: relative;
    min-width: 0;
    min-height: 290px;
    overflow: hidden;
    padding: 46px 42px;
    background: #fff;
    border: 1px solid rgba(25, 31, 76, .06);
    border-radius: 26px;
    box-shadow: 0 10px 32px rgba(25, 31, 76, .08);
    transition: transform .25s, box-shadow .25s;
}

.tips-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 38px rgba(25, 31, 76, .12);
}

.tips-page-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    bottom: -70px;
    background: var(--ice);
    border-radius: 50%;
    opacity: .5;
}

.tips-page-card:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 34px;
    min-height: 230px;
    background: var(--ice);
}

.tips-page-card:first-child::after {
    background: #fff;
}

.tips-page-icon {
    position: relative;
    z-index: 1;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: var(--cream);
    border-radius: 50%;
    font-size: 29px;
}

.tips-page-card:first-child .tips-page-icon {
    background: #fff;
}

.tips-page-card-content {
    position: relative;
    z-index: 1;
}

.tips-page-card h2 {
    margin: 22px 0 14px;
    font-size: 23px;
}

.tips-page-card:first-child h2 {
    margin-top: 0;
}

.tips-page-card p {
    margin: 0;
    color: #64687a;
    font-size: 14px;
    line-height: 1.8;
}

.tips-page-card ul {
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
}

.tips-page-card li {
    padding: 7px 12px;
    color: #5d6174;
    background: var(--soft);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 650;
}

.tips-page-cta {
    padding: 80px 0;
    background: var(--navy);
    color: #fff;
}

.tips-page-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.tips-page-cta h2 {
    max-width: 770px;
    margin: 0;
    font-size: clamp(29px, 3vw, 42px);
    line-height: 1.2;
}

.tips-page-cta .gold-button {
    width: 190px;
    flex: 0 0 auto;
}

/* Tips list */
.tips-list-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(186, 205, 223, .35), transparent 28%),
        linear-gradient(180deg, var(--cream) 0%, #f7f8fb 100%);
}

.tips-list-section::before {
    content: "";
    position: absolute;
    top: 110px;
    right: -170px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(25, 31, 76, .08);
    border-radius: 50%;
    box-shadow:
        0 0 0 55px rgba(25, 31, 76, .025),
        0 0 0 110px rgba(25, 31, 76, .018);
    pointer-events: none;
}

.tips-list-section > .container {
    position: relative;
    z-index: 1;
}

.tips-category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 64px;
    padding: 9px;
    border: 1px solid rgba(25, 31, 76, .08);
    border-radius: 40px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 14px 35px rgba(25, 31, 76, .07);
    backdrop-filter: blur(10px);
}

.tips-category-tabs a {
    padding: 11px 22px;
    color: var(--navy);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    transition: color .25s ease, background .25s ease, box-shadow .25s ease;
}

.tips-category-tabs a:hover,
.tips-category-tabs a.active {
    color: #fff;
    background: var(--navy);
    border-color: var(--navy);
    box-shadow: 0 9px 22px rgba(25, 31, 76, .18);
}

.tips-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.tips-list-card {
    position: relative;
    min-width: 0;
    min-height: 360px;
    display: flex;
    align-items: center;
    padding: 125px 100px 70px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #fdfdfd 100%);
    border: 1px solid rgba(25, 31, 76, .08);
    border-radius: 30px;
    box-shadow: 0 16px 45px rgba(25, 31, 76, .09);
    isolation: isolate;
    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1),
        box-shadow .35s ease,
        border-color .35s ease;
}

/* Büyük tırnak işareti */
.tips-list-card::before {
    content: "“";
    position: absolute;
    z-index: 0;
    top: 32px;
    right: 38px;
    color: rgba(25, 31, 76, .055);
    font-family: Georgia, serif;
    font-size: 135px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
    transition:
        color .35s ease,
        transform .35s ease;
}

/* Sağ alt altın detay */
.tips-list-card::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 115px;
    height: 5px;
    background: var(--gold);
    border-radius: 5px 0 0;
    transition: width .35s ease;
}

.tips-list-card:hover {
    transform: translateY(-7px);
    border-color: rgba(216, 189, 124, .48);
    box-shadow: 0 24px 58px rgba(25, 31, 76, .14);
}

.tips-list-card:hover::before {
    color: rgba(216, 189, 124, .14);
    transform: translateY(-5px);
}

.tips-list-card:hover::after {
    width: 175px;
}

/* Sol üst çapraz kategori şeridi */
.tips-card-category {
    position: absolute;
    z-index: 3;
    top: 54px;
    left: -105px;
    width: 360px;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 45px;
    overflow: hidden;
    color: #fff;
    background: var(--navy);
    border-top: 4px solid var(--gold);
    border-bottom: 4px solid var(--gold);
    box-shadow: 0 8px 18px rgba(25, 31, 76, .22);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: .04em;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-45deg);
    transform-origin: center;
}

.tips-card-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.tips-list-card p {
    margin: 0;
    color: var(--navy);
    font-size: clamp(19px, 1.5vw, 25px);
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: -.018em;
}

.tips-empty-state {
    padding: 70px 30px;
    border: 1px dashed rgba(25, 31, 76, .2);
    border-radius: 26px;
    color: #707385;
    background: rgba(255, 255, 255, .65);
    text-align: center;
}

/* Dealership logos */


.dealership-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
}

.dealership-logo-card {
    min-width: 0;
    height: 260px;
    display: grid;
    place-items: center;
    padding: 38px;
    background: #fff;
    border-radius: 17px;
    box-shadow: 0 8px 18px rgba(37, 52, 95, .1);
    transition: transform .25s ease, box-shadow .25s ease;
}

.dealership-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 32px rgba(37, 52, 95, .15);
}

.dealership-logo-card img {
    width: 100%;
    max-width: 190px;
    max-height: 125px;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .dealership-logos-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Remaining inner pages */
.content-lead {
    max-width: 760px;
    margin: 0 auto 58px;
    text-align: center;
}

.content-lead h2 {
    margin: 0 0 17px;
    font-size: clamp(32px, 3.6vw, 48px);
    line-height: 1.15;
}

.content-lead p {
    margin: 0;
    color: #666a7d;
    font-size: 15px;
    line-height: 1.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.feature-card {
    min-width: 0;
    padding: 38px 32px;
    background: #fff;
    border-radius: 23px;
    box-shadow: 0 10px 30px rgba(25, 31, 76, .08);
}

.feature-card i {
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    color: var(--navy);
    background: var(--ice);
    border-radius: 50%;
    font-size: 24px;
}

.feature-card h3 {
    margin: 0 0 13px;
    font-size: 19px;
}

.feature-card p {
    margin: 0;
    color: #666a7d;
    font-size: 13px;
    line-height: 1.75;
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(50px, 7vw, 105px);
    align-items: center;
}

.split-visual {
    min-height: 470px;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 45px;
    background: var(--ice);
    border-radius: 30px 30px 95px 30px;
}

.split-visual img {
    width: 100%;
    max-height: 390px;
    object-fit: contain;
}

.split-copy h2 {
    margin: 0 0 23px;
    font-size: clamp(32px, 3.5vw, 47px);
    line-height: 1.15;
}

.split-copy p {
    margin: 0 0 19px;
    color: #5f6376;
    font-size: 15px;
    line-height: 1.85;
}

.check-list {
    margin: 28px 0 35px;
    padding: 0;
    display: grid;
    gap: 13px;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #41455a;
    font-size: 14px;
    font-weight: 650;
}

.check-list i {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--navy);
    background: var(--ice);
    border-radius: 50%;
    font-size: 10px;
}

.dealership-section,
.export-section,
.catalog-section,
.search-section {
    background: var(--cream);
}

.application-box {
    margin-top: 80px;
    padding: clamp(35px, 5vw, 60px);
    background: var(--navy);
    border-radius: 28px;
    color: #fff;
}

.application-box-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.application-box h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.2;
}

.application-box .gold-button {
    width: 205px;
    flex: 0 0 auto;
}

.export-markets {
    padding: 105px 0;
    background: var(--soft);
}

.market-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 13px;
}

.market-list span {
    padding: 12px 20px;
    color: var(--navy);
    background: #fff;
    border: 1px solid #e3e5ea;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.catalog-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    overflow: hidden;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 11px 32px rgba(25, 31, 76, 0.1);
}

.catalog-cover {
    height: 100%;
    min-height: 0;
    display: grid;
    place-items: center;
    padding: 30px;
    background: var(--ice);
}

.catalog-cover i {
    color: var(--navy);
    font-size: 64px;
    opacity: 0.88;
}

.catalog-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
    padding: 28px;
}

.catalog-card h2 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 21px;
    line-height: 1.3;
}

.catalog-card p {
    margin: 0 0 23px;
    color: #727587;
    font-size: 13px;
    line-height: 1.7;
}

.catalog-download {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
}

.catalog-download i {
    color: #b2934f;
}

@media (max-width: 1100px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .catalog-card {
        grid-template-columns: 105px minmax(0, 1fr);
        min-height: 180px;
        border-radius: 16px;
    }

    .catalog-cover {
        min-height: 0;
        padding: 18px;
    }

    .catalog-cover i {
        font-size: 42px;
    }

    .catalog-card-content {
        padding: 20px 18px;
    }

    .catalog-card h2 {
        font-size: 17px;
    }

    .catalog-card p {
        margin-bottom: 15px;
        font-size: 12px;
    }

    .catalog-download {
        font-size: 11px;
    }
}
.search-form {
    display: flex;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 8px;
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 10px 32px rgba(25, 31, 76, .09);
}

.search-form input {
    width: 100%;
    min-width: 0;
    height: 54px;
    padding: 0 19px;
    border: 0;
    outline: 0;
    color: var(--navy);
    background: transparent;
    font: inherit;
    font-size: 14px;
}

.search-form button {
    width: 58px;
    flex: 0 0 58px;
    border: 0;
    color: var(--gold);
    background: var(--navy);
    border-radius: 9px;
    cursor: pointer;
    font-size: 17px;
}

.search-count {
    margin-bottom: 24px;
    color: #858795;
    font-size: 13px;
}

.search-results {
    display: grid;
    gap: 16px;
}

.search-result-card {
    display: grid;
    grid-template-columns: 115px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 19px;
    background: #fff;
    border-radius: 17px;
    box-shadow: 0 7px 24px rgba(25, 31, 76, .07);
}

.search-result-image {
    width: 115px;
    height: 95px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--soft);
    border-radius: 12px;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.search-result-card span {
    color: #b2934f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.search-result-card h2 {
    margin: 7px 0;
    font-size: 18px;
}

.search-result-card p {
    margin: 0;
    color: #777a8a;
    font-size: 12px;
    line-height: 1.6;
}

.search-result-arrow {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--gold);
    background: var(--navy);
    border-radius: 50%;
    font-size: 12px;
}

.error-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 140px;
    color: #fff;
    background: var(--navy);
    text-align: center;
}

.error-page::before,
.error-page::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(216, 189, 124, .2);
    border-radius: 50%;
}

.error-page::before {
    width: 520px;
    height: 520px;
    top: -290px;
    right: -130px;
}

.error-page::after {
    width: 360px;
    height: 360px;
    left: -210px;
    bottom: -180px;
}

.error-content {
    position: relative;
    z-index: 1;
    width: min(720px, calc(100% - 40px));
}

.error-logo {
    width: 190px;
    margin: 0 auto 55px;
}

.error-number {
    color: var(--gold);
    font-size: clamp(120px, 20vw, 150px);
    font-weight: 900;
    line-height: .72;
    letter-spacing: -.08em;
}

.error-content h1 {
    margin: 45px 0 15px;
    font-size: clamp(29px, 4vw, 32px);
}

.error-content p {
    max-width: 590px;
    margin: 0 auto 35px;
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
    line-height: 1.75;
}

.error-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.error-actions .gold-button,
.error-actions .outline-button {
    min-width: 180px;
    height: 50px;
    display: grid;
    place-items: center;
}

.outline-button {
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info {
        max-width: 760px;
    }

    .contact-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .policy-layout {
        grid-template-columns: 270px minmax(0, 1fr);
        gap: 35px;
    }
}

@media (max-width: 900px) {
    .policy-layout {
        grid-template-columns: 1fr;
    }

    .policy-sidebar {
        position: static;
    }

    .policy-nav {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .policy-nav a {
        min-height: 58px;
        border: 0;
        border-radius: 9px;
    }

    .tips-page-grid {
        grid-template-columns: 1fr;
    }

    .tips-page-card:first-child {
        grid-column: auto;
    }

    .tips-page-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .feature-grid,
    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-content {
        grid-template-columns: 1fr;
    }

    .split-visual {
        order: 2;
    }

    .application-box-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .tips-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dealership-logos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .dealership-logo-card {
        height: 220px;
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .contact-layout {
        gap: 45px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-address {
        grid-column: auto;
    }

    .contact-card {
        padding: 21px 18px;
    }

    .contact-form-wrap {
        padding: 30px 22px;
        border-radius: 21px;
    }

    .contact-form-wrap h2 {
        font-size: 27px;
    }

    .contact-form {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .form-group.full {
        grid-column: auto;
    }

    .contact-form .navy-button {
        width: 100%;
        justify-content: center;
    }

    .contact-map-section {
        padding-bottom: 80px;
    }

    .contact-map {
        height: 360px;
        border-radius: 20px;
    }

    .policy-layout {
        gap: 28px;
    }

    .policy-sidebar-title {
        padding: 21px;
    }

    .policy-nav {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        padding: 10px;
        scrollbar-width: none;
    }

    .policy-nav::-webkit-scrollbar {
        display: none;
    }

    .policy-nav a {
        flex: 0 0 auto;
        min-height: auto;
        padding: 13px 15px;
        white-space: nowrap;
    }

    .policy-nav a i {
        display: none;
    }

    .policy-content {
        padding: 32px 22px;
        border-radius: 20px;
    }

    .policy-content-header {
        margin-bottom: 28px;
        padding-bottom: 22px;
    }

    .policy-content h1 {
        font-size: 29px;
    }

    .policy-content h2 {
        margin-top: 31px;
        font-size: 19px;
    }

    .policy-content p,
    .policy-content li {
        font-size: 13px;
        line-height: 1.8;
    }

    .policy-contact-box {
        padding: 22px;
    }

    .tips-page-intro {
        margin-bottom: 42px;
        text-align: left;
    }

    .tips-page-intro p {
        font-size: 14px;
    }

    .tips-page-grid {
        gap: 18px;
    }

    .tips-page-card,
    .tips-page-card:first-child {
        display: block;
        min-height: auto;
        padding: 32px 24px;
        border-radius: 21px;
    }

    .tips-page-icon {
        width: 64px;
        height: 64px;
        font-size: 23px;
    }

    .tips-page-card h2,
    .tips-page-card:first-child h2 {
        margin: 20px 0 12px;
        font-size: 20px;
    }

    .tips-page-card p {
        font-size: 13px;
        line-height: 1.75;
    }

    .tips-page-cta {
        padding: 65px 0;
    }

    .tips-page-cta .gold-button {
        width: 100%;
    }

    .content-lead {
        margin-bottom: 42px;
        text-align: left;
    }

    .content-lead p {
        font-size: 14px;
    }

    .feature-grid,
    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 31px 25px;
    }

    .split-content {
        gap: 38px;
    }

    .split-visual {
        min-height: 310px;
        padding: 28px;
        border-radius: 23px 23px 65px 23px;
    }

    .split-copy p {
        font-size: 14px;
    }

    .application-box {
        margin-top: 55px;
        padding: 34px 24px;
    }

    .application-box .gold-button {
        width: 100%;
    }

    .export-markets {
        padding: 75px 0;
    }

    .market-list {
        justify-content: flex-start;
    }

    .catalog-cover {
        min-height: 0;
    }

    .search-form {
        margin-bottom: 42px;
    }

    .search-result-card {
        grid-template-columns: 80px minmax(0, 1fr);
        gap: 15px;
    }

    .search-result-image {
        width: 80px;
        height: 80px;
    }

    .search-result-arrow {
        display: none;
    }

    .search-result-card h2 {
        font-size: 15px;
    }

    .search-result-card p {
        display: none;
    }

    .error-logo {
        width: 155px;
        margin-bottom: 45px;
    }

    .error-content h1 {
        margin-top: 36px;
    }

    .error-content p {
        font-size: 14px;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions .gold-button,
    .error-actions .outline-button {
        width: 100%;
    }

    .tips-category-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        margin: 0 -18px 40px;
        width: auto;
        max-width: none;
        padding: 8px 18px 12px;
        border-width: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        scrollbar-width: none;
    }

    .tips-category-tabs::-webkit-scrollbar {
        display: none;
    }

    .tips-category-tabs a {
        flex: 0 0 auto;
        padding: 9px 18px;
        font-size: 12px;
    }

    .tips-list-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tips-list-card {
        min-height: auto;
        padding: 28px 24px 30px;
        border-radius: 22px;
    }

    .tips-list-card-top {
        gap: 13px;
        margin-bottom: 24px;
    }

    .tips-list-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        border-radius: 15px;
        font-size: 20px;
    }

    .tips-card-category {
        font-size: 10px;
        letter-spacing: .08em;
    }

    .tips-card-number {
        font-size: 29px;
    }

    .tips-list-card p {
        font-size: 16px;
        line-height: 1.7;
    }

    .dealership-logos-grid {
        gap: 14px;
    }

    .dealership-logo-card {
        height: 165px;
        padding: 22px;
        border-radius: 14px;
    }

    .dealership-logo-card img {
        max-width: 125px;
        max-height: 85px;
    }
}

@media (max-width: 390px) {
    .dealership-logos-grid {
        grid-template-columns: 1fr;
    }

    .dealership-logo-card {
        height: 190px;
    }

    .dealership-logo-card img {
        max-width: 155px;
        max-height: 100px;
    }
}

@media (max-width: 390px) {
    .product-list-grid {
        grid-template-columns: 1fr;
    }

    .product-list-card .product-image {
        height: 280px;
    }

    .related-products-grid {
        grid-template-columns: 1fr;
    }

    .related-products-grid .product-list-card:last-child {
        display: block;
    }

    .related-products-grid .product-image {
        height: 280px;
    }
}

/* Recipes */
.recipe-list-section {
    background: var(--cream);
}

.recipe-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.recipe-list-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(37, 52, 95, .1);
    transition: transform .25s, box-shadow .25s;
}

.recipe-list-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(37, 52, 95, .15);
}

.recipe-list-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 28px;
}

.recipe-list-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 26px 28px 30px;
}

.recipe-list-card .recipe-category {
    color: #b2934f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.recipe-list-card h2 {
    margin: 11px 0 13px;
    color: #101010;
    font-size: 22px;
    line-height: 1.3;
}

.recipe-list-card p {
    margin: 0 0 24px;
    color: #737687;
    font-size: 13px;
    line-height: 1.7;
}

.recipe-list-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #eceef2;
    color: #737687;
    font-size: 12px;
}

.recipe-list-meta span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.recipe-list-meta i {
    color: var(--navy);
}

.recipe-detail-section {
    background: var(--cream);
}

.recipe-detail-cover {
    position: relative;
    overflow: hidden;
    height: clamp(430px, 55vw, 680px);
    border-radius: 34px;
    box-shadow: 0 16px 45px rgba(25, 31, 76, .13);
}

.recipe-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-summary {
    position: relative;
    z-index: 2;
    width: calc(100% - 100px);
    max-width: 980px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: -62px auto 0;
    padding: 31px 40px;
    color: #fff;
    background: var(--navy);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(25, 31, 76, .18);
}

.recipe-summary-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 4px 24px;
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.recipe-summary-item:last-child {
    border-right: 0;
}

.recipe-summary-item i {
    color: var(--gold);
    font-size: 24px;
}

.recipe-summary-item span {
    display: block;
    color: rgba(255, 255, 255, .62);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.recipe-summary-item strong {
    display: block;
    margin-top: 4px;
    font-size: 15px;
}

.recipe-body {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: clamp(55px, 7vw, 105px);
    align-items: start;
}

.ingredients-box {
    position: sticky;
    top: 35px;
    padding: 42px;
    background: var(--ice);
    border-radius: 25px;
}

.ingredients-box h2,
.recipe-steps h2 {
    margin: 0 0 28px;
    font-size: 31px;
}

.ingredients-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ingredients-list li {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(25, 31, 76, .12);
    color: #3d4158;
    font-size: 14px;
    line-height: 1.5;
}

.ingredients-list li:last-child {
    border-bottom: 0;
}

.ingredients-list i {
    margin-top: 4px;
    color: #a88642;
    font-size: 10px;
}

.recipe-steps {
    counter-reset: recipe-step;
}

.recipe-step {
    position: relative;
    min-height: 74px;
    margin-bottom: 30px;
    padding-left: 90px;
}

.recipe-step::before {
    counter-increment: recipe-step;
    content: counter(recipe-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--gold);
    background: var(--navy);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
}

.recipe-step h3 {
    margin: 0 0 9px;
    font-size: 18px;
}

.recipe-step p {
    margin: 0;
    color: #5d6174;
    font-size: 14px;
    line-height: 1.8;
}

.recipe-tip {
    margin-top: 38px;
    padding: 27px 30px;
    color: #4d5165;
    background: #fff;
    border-left: 4px solid var(--gold);
    box-shadow: 0 8px 25px rgba(25, 31, 76, .07);
    font-size: 14px;
    line-height: 1.75;
}

.related-recipes {
    background: var(--soft);
}

.related-recipes .recipe-list-grid {
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .recipe-list-card img {
        height: 260px;
    }

    .recipe-list-card-content {
        padding: 23px;
    }

    .recipe-body {
        gap: 55px;
    }
}

@media (max-width: 900px) {
    .recipe-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .recipe-list-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: calc(50% - 17px);
    }

    .recipe-summary {
        width: calc(100% - 50px);
    }

    .recipe-body {
        grid-template-columns: 1fr;
    }

    .ingredients-box {
        position: static;
    }
}

@media (max-width: 600px) {
    .recipe-list-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .recipe-list-card:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: none;
    }

    .recipe-list-card img {
        height: 235px;
    }

    .recipe-list-card h2 {
        font-size: 19px;
    }

    .recipe-detail-cover {
        height: 360px;
        border-radius: 24px;
    }

    .recipe-summary {
        width: calc(100% - 28px);
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: -45px;
        padding: 18px 24px;
    }

    .recipe-summary-item {
        justify-content: flex-start;
        padding: 15px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
    }

    .recipe-summary-item:last-child {
        border-bottom: 0;
    }

    .ingredients-box {
        padding: 30px 24px;
    }

    .ingredients-box h2,
    .recipe-steps h2 {
        font-size: 27px;
    }

    .recipe-step {
        padding-left: 68px;
    }

    .recipe-step::before {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }

    .recipe-tip {
        padding: 23px;
    }
}


.product-gallery-open {
    position: relative;
    display: grid;
    width: 100%;
    height: 100%;
    padding: 0;
    place-items: center;
    overflow: hidden;
    border: 0;
    outline: none;
    cursor: zoom-in;
    background: transparent;
}

.product-gallery-open > img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 405px;
    object-fit: contain;
}

.product-gallery-zoom {
    position: absolute;
    right: 15px;
    bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border-radius: 30px;
    color: #fff;
    background: rgba(25, 31, 76, .88);
    box-shadow: 0 5px 18px rgba(25, 31, 76, .18);
    font-size: 11px;
    font-weight: 700;
    pointer-events: none;
    transition:
        color .2s ease,
        background-color .2s ease,
        transform .2s ease;
}

.product-gallery-open:hover .product-gallery-zoom {
    color: var(--navy);
    background: var(--gold);
    transform: translateY(-2px);
}

.product-gallery-open:focus-visible {
    border-radius: 15px;
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* GLightbox görünümü */
.glightbox-container .gslide-image img {
    max-height: 90vh;
}

.glightbox-container .gclose,
.glightbox-container .gnext,
.glightbox-container .gprev {
    border-radius: 50%;
    background-color: rgba(25, 31, 76, .92);
}

.glightbox-container .gclose:hover,
.glightbox-container .gnext:hover,
.glightbox-container .gprev:hover {
    background-color: var(--gold);
}
.glightbox-clean .gdesc-inner {
    display: none;
}


.product-detail-copy > p,
.product-detail-note,
.product-info-content {
    white-space: pre-line;
}









.product-detail-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.product-detail-actions .navy-button {
    margin: 0;
}

.product-detail-actions .order-request-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--gold, #d8bd7c);
    color: var(--navy, #191f4c);
}

.product-detail-actions .order-request-button:hover {
    background: var(--navy, #191f4c);
    color: #fff;
}

@media (max-width: 575.98px) {
    .product-detail-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .product-detail-actions .navy-button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}


@media (max-width: 600px) {
    .tips-list-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tips-list-card {
        min-height: 310px;
        padding: 115px 45px 48px;
        border-radius: 23px;
    }

    .tips-list-card::before {
        top: 28px;
        right: 20px;
        font-size: 105px;
    }

    .tips-card-category {
        top: 43px;
        left: -111px;
        width: 340px;
        min-height: 46px;
        padding-inline: 42px;
        font-size: 12px;
        border-top-width: 3px;
        border-bottom-width: 3px;
    }

    .tips-list-card p {
        font-size: 17px;
        line-height: 1.7;
    }
}
