/* ==========================================================================
   MOREK PAGE STYLES
   ========================================================================== */

.morek-hero {
    background: url('/img/morek/tlo 1.jpg') center / cover no-repeat;
    color: #fff;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.morek-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.morek-hero__container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.morek-hero__subtitle {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.morek-hero__title {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.morek-hero__logo {
    max-width: 300px;
    height: auto;
}

.morek-hero__description {
    font-size: 1.15rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    opacity: 0.95;
}

.morek-hero__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.morek-hero__feature {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.morek-hero__feature-title {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}

.morek-section {
    padding: 80px 0;
    position: relative;
    scroll-margin-top: 100px;
}

.morek-section:nth-child(even) {
    background-color: #f8f9fa;
}

.morek-section__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.morek-section__header {
    text-align: center;
    margin-bottom: 5rem;
}

.morek-section__category {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #00b1cf;
    background: rgba(0, 177, 207, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.morek-section__title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #303a4d;
    margin-bottom: 1.5rem;
}

.morek-section__subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.6;
}

.morek-product {
    display: flex;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: flex-start;
}

.morek-product--reverse {
    flex-direction: row-reverse;
}

.morek-product__left,
.morek-product__right {
    flex: 1;
}

.morek-product__content {
    margin-bottom: 2rem;
}

.morek-product__name {
    font-size: 2.25rem;
    font-weight: 700;
    color: #303a4d;
    margin-bottom: 0.75rem;
}

.morek-product__tagline {
    font-size: 1.15rem;
    color: #00b1cf;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.morek-product__description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.morek-product__specs {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.morek-product__specs-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #303a4d;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #00b1cf;
}

.morek-product__specs-list {
    list-style: none;
    padding: 0;
}

.morek-product__specs-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
    color: #555;
    font-size: 1rem;
}

.morek-product__specs-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #00b1cf;
    font-weight: bold;
}

.morek-product__installation {
    background: #eef7fa;
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 2rem;
}

.morek-product__installation-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #303a4d;
    margin-bottom: 1rem;
}

.morek-product__installation-list {
    list-style: none;
    padding: 0;
}

.morek-product__installation-list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    font-size: 0.95rem;
}

.morek-product__installation-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00b1cf;
    font-weight: bold;
}

.morek-product__gallery {
    position: sticky;
    top: 100px;
}

.morek-gallery__main {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.morek-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.morek-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.morek-gallery__thumb {
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 3px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 0;
    margin: 0;
    width: 100%;
}

.morek-gallery__thumb:hover,
.morek-gallery__thumb.active {
    border-color: #00b1cf;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 177, 207, 0.25);
}

.morek-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.morek-product__order-numbers {
    background: #f1f3f5;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
    border-left: 4px solid #00b1cf;
}

.morek-product__order-numbers-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #303a4d;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.morek-order-codes {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #555;
    font-family: 'Courier New', monospace;
    word-break: break-all;
}

.morek-product__actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.morek-product__button {
    flex: 1;
    min-width: 180px;
    padding: 1.1rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-sizing: border-box;
}

.morek-product__button--primary {
    background-color: #00b1cf;
    color: #fff;
    border: 2px solid #00b1cf;
}

.morek-product__button--primary:hover {
    background-color: #0097ad;
    border-color: #0097ad;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 177, 207, 0.25);
}

.morek-product__button--secondary {
    background-color: #fff;
    color: #303a4d;
    border: 2px solid #303a4d;
}

.morek-product__button--share {
    background-color: transparent;
    color: #303a4d;
    border: 2px solid #303a4d;
    padding: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.morek-product__button--share:hover {
    background-color: #303a4d;
    color: #fff;
    transform: translateY(-3px);
}

.morek-product__button--share svg {
    width: 24px;
    height: 24px;
}


.morek-accessories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.morek-accessory {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.morek-accessory:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.morek-accessory__image {
    width: 100%;
    aspect-ratio: 1/1;
    background: #fdfdfd;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.morek-accessory__image img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.morek-accessory__name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #303a4d;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.morek-accessory__description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.morek-accessory__features {
    list-style: none;
    padding: 0;
}

.morek-accessory__features li {
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: #555;
    font-size: 0.95rem;
}

.morek-accessory__features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00b1cf;
    font-weight: bold;
}

.morek-targets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.morek-target {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.morek-target__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #303a4d;
    margin-bottom: 1.5rem;
}

.morek-target__list {
    list-style: none;
    padding: 0;
}

.morek-target__list li {
    padding: 0.8rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #555;
    line-height: 1.6;
    font-size: 1.05rem;
}

.morek-target__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00b1cf;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .morek-product {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .morek-product--reverse {
        flex-direction: column;
    }

    .morek-product__left,
    .morek-product__right {
        display: contents;
    }

    .morek-product__content {
        order: 1;
    }

    .morek-product__gallery {
        order: 2;
        width: 100%;
    }

    .morek-product__details {
        order: 3;
    }

    .morek-product__order-numbers {
        order: 4;
    }

    .morek-product__actions {
        order: 5;
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .morek-product__button {
        width: 100%;
        min-width: 0;
    }

    .morek-product__button--share {
        align-self: flex-start;
        width: 50px;
        height: 50px;
    }

    .morek-gallery__main {
        aspect-ratio: 16/9;
    }

    .morek-accessories {
        grid-template-columns: repeat(2, 1fr);
    }

    .morek-targets {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .morek-hero {
        padding: 120px 0 60px;
    }

    .morek-hero__logo {
        max-width: 220px;
    }

    .morek-hero__features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .morek-section {
        padding: 60px 0;
    }

    .morek-section__title {
        font-size: 2.25rem;
    }

    .morek-product__name {
        font-size: 1.85rem;
    }

    .morek-accessories {
        grid-template-columns: 1fr;
    }
}