/*
Theme Name: Hayyak
Author: Gemini
Description: A custom theme for Hayyak, a building materials company.
Version: 1.0
*/

:root {
    --hayyak-primary: #693067;
    --hayyak-primary-dark: #54274f;
    --hayyak-accent: #ee851e;
    --hayyak-text: #1f2937;
    --hayyak-muted: #6b7280;
    --hayyak-surface: #ffffff;
    --hayyak-surface-soft: #f3f4f6;
    --hayyak-border: #dbe3eb;
    --hayyak-footer-bg: #0c1926;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    margin: 0;
    color: var(--hayyak-text);
    padding-top: 120px;
}

html,
body {
    background-color: #fff;
}

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

/* Header */
.hayyak-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid transparent;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hayyak-announcement-bar {
    min-height: 36px;
    padding: 8px 20px;
    background: var(--hayyak-accent);
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hayyak-announcement-bar p {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.25;
}

.hayyak-header.is-scrolled {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
    border-color: var(--hayyak-border);
    box-shadow: 0 10px 24px rgba(4, 17, 29, 0.08);
}

.hayyak-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 84px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hayyak-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hayyak-logo-image {
    width: auto;
    height: 70px;
    display: block;
    object-fit: contain;
}

.hayyak-brand-text {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--hayyak-primary-dark);
}

.hayyak-brand-title {
    font-size: 1.05rem;
}

.hayyak-brand-subtitle {
    font-size: 0.85rem;
    color: #000000;
    font-style: italic;
    font-weight: 500;
}

.hayyak-main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2px;
}

.hayyak-main-nav a {
    display: inline-block;
    padding: 10px 10px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--hayyak-primary-dark);
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.hayyak-main-nav a:hover,
.hayyak-main-nav a:focus-visible {
    background: var(--hayyak-surface-soft);
    color: var(--hayyak-primary);
}

.hayyak-menu-toggle {
    display: none;
    border: 1px solid var(--hayyak-border);
    background: var(--hayyak-surface);
    border-radius: 8px;
    color: var(--hayyak-primary-dark);
    padding: 10px;
    font-weight: 600;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.hayyak-menu-icon {
    width: 24px;
    height: 24px;
    display: block;
}

/* Footer */
.hayyak-footer {
    margin-top: 60px;
    background: #fff;
    color: var(--hayyak-text);
    border-top: 1px solid var(--hayyak-border);
}

.hayyak-footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 28px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 32px;
}

.hayyak-footer h3 {
    margin: 0 0 12px;
    font-size: 1.05rem;
    color: var(--hayyak-primary);
}

.hayyak-brand-footer .hayyak-brand-text {
    color: var(--hayyak-primary-dark);
}

.hayyak-brand-footer .hayyak-logo-image {
    height: 42px;
}

.hayyak-footer-brand p {
    margin: 14px 0 0;
    max-width: 360px;
    color: var(--hayyak-muted);
}

.hayyak-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.hayyak-footer-links a {
    color: var(--hayyak-primary-dark);
    transition: color 0.2s ease;
}

.hayyak-footer-links a:hover,
.hayyak-footer-links a:focus-visible {
    color: var(--hayyak-accent);
}

.hayyak-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hayyak-socials a {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #f3f4f6;
    color: var(--hayyak-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.hayyak-socials a:hover,
.hayyak-socials a:focus-visible {
    transform: translateY(-2px);
    background: var(--hayyak-accent);
    color: #fff;
}

.hayyak-socials svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.hayyak-footer-bottom {
    border-top: 1px solid var(--hayyak-border);
    padding: 16px 20px 24px;
    text-align: center;
    color: var(--hayyak-muted);
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.hayyak-whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 24px rgba(37, 211, 102, 0.35);
    z-index: 1000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hayyak-whatsapp-float:hover,
.hayyak-whatsapp-float:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 18px 28px rgba(37, 211, 102, 0.42);
}

.hayyak-whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

/* Admin bar offset */
.admin-bar .hayyak-header {
    top: 32px;
}

/* Home page */
.home-hero {
    padding: 20px 20px 0;
}

.home-hero .hero-slider {
    max-width: 1240px;
    margin: 0 auto;
    height: clamp(520px, 80vh, 840px);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #0e1d2d;
}

.home-hero-slide {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.home-hero-media {
    display: block;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    inset: 0;
    background: transparent;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(105deg, rgba(10, 25, 40, 0.72) 15%, rgba(10, 25, 40, 0.2) 70%);
    pointer-events: none;
}

.home-hero-content {
    position: absolute;
    left: min(7vw, 72px);
    bottom: min(12vh, 86px);
    z-index: 3;
    max-width: min(720px, 80%);
    color: #fff;
    pointer-events: none;
}

.home-hero-kicker {
    margin: 0 0 12px;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffd9b0;
    font-weight: 700;
}

.home-hero-content h1 {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 4vw, 3.3rem);
    line-height: 1.08;
}

.home-hero-content p {
    margin: 0;
    font-size: clamp(1rem, 1.7vw, 1.2rem);
    line-height: 1.55;
    color: #e4edf8;
}

.home-hero .swiper-button-prev,
.home-hero .swiper-button-next {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(4px);
}

.home-hero .swiper-button-prev::after,
.home-hero .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
}

.home-hero .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
}

.home-hero .swiper-pagination-bullet-active {
    background: #fff;
}

.home-hero .swiper-pagination {
    z-index: 4;
}

.counter-section,
.kitchen-spotlight-section,
.mission-vision-quality-section,
.home-products-section,
.home-custom-made-section,
.tile-compare-section,
.home-gallery-section,
.home-latest-blog-section,
.faq-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 70px 20px 0;
    margin-top:16px;
}

.counter-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.counter-item {
    background: #fff;
    border: 1px solid var(--hayyak-border);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
}

.counter-value {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--hayyak-primary);
    line-height: 1;
}

.counter-label {
    margin-top: 10px;
    color: var(--hayyak-muted);
    font-weight: 600;
}

.kitchen-spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.kitchen-spotlight-media {
    border: 1px solid var(--hayyak-border);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    width: min(88%, 560px);
    justify-self: center;
}

.kitchen-spotlight-slider img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.kitchen-spotlight-content .section-title,
.kitchen-spotlight-content .section-paragraph {
    text-align: left;
}

.section-heading {
    text-align: center;
}

.section-title {
    margin: 0 0 10px;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    line-height: 1.2;
    color: var(--hayyak-primary);
}

.section-paragraph {
    margin: 0 auto;
    max-width: 760px;
    color: var(--hayyak-muted);
    line-height: 1.65;
}

.boxes-container {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.box {
    padding: 22px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--hayyak-border);
    box-shadow: 0 14px 26px rgba(16, 42, 67, 0.06);
}

.box h3 {
    margin: 0 0 10px;
    color: var(--hayyak-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.commitment-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(105, 48, 103, 0.1);
    color: var(--hayyak-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.commitment-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.box p {
    margin: 0;
    color: var(--hayyak-muted);
    line-height: 1.6;
}

.home-products-slider {
    margin-top: 28px;
}

.home-products-slider .swiper-slide {
    height: auto;
}

.home-product-category-card .catalog-category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-product-category-card .catalog-category-image-link {
    aspect-ratio: 4 / 5;
}

.home-products-pagination {
    margin-top: 22px;
    text-align: center;
}

.home-products-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(105, 48, 103, 0.25);
    opacity: 1;
}

.home-products-pagination .swiper-pagination-bullet-active {
    background: var(--hayyak-primary);
}

.home-products-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.home-products-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    background: var(--hayyak-primary);
    color: #fff;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.home-products-view-all:hover,
.home-products-view-all:focus-visible {
    background: var(--hayyak-primary-dark);
}

.home-products-empty {
    margin-top: 18px;
    text-align: center;
    color: var(--hayyak-muted);
}

.home-custom-made-slider {
    margin-top: 28px;
}

.home-custom-made-slider .swiper-slide {
    height: auto;
}

.home-custom-made-pagination {
    margin-top: 22px;
    text-align: center;
}

.home-custom-made-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(105, 48, 103, 0.25);
    opacity: 1;
}

.home-custom-made-pagination .swiper-pagination-bullet-active {
    background: var(--hayyak-primary);
}

.home-custom-made-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.home-custom-made-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    background: var(--hayyak-primary);
    color: #fff;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.home-custom-made-view-all:hover,
.home-custom-made-view-all:focus-visible {
    background: var(--hayyak-primary-dark);
}

.home-custom-made-empty {
    margin-top: 18px;
    text-align: center;
    color: var(--hayyak-muted);
}

.tile-compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: center;
}

.tile-compare-row-reverse .tile-compare-media {
    order: 2;
}

.tile-compare-row-reverse .tile-compare-content {
    order: 1;
}

.tile-compare-media {
    border: 1px solid var(--hayyak-border);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    width: min(78%, 420px);
    justify-self: center;
}

.tile-compare-media img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.tile-compare-content .section-title,
.tile-compare-content .section-paragraph {
    text-align: left;
}

.home-gallery-slider {
    margin-top: 28px;
    padding-bottom: 0;
}

.gallery-card {
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #fff;
    border: 1px solid var(--hayyak-border);
    box-shadow: none;
}

.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.gallery-card video {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.home-gallery-slider .swiper-slide {
    height: auto;
}

.home-gallery-slider .swiper-pagination-bullet {
    background: #bcc8d4;
    opacity: 1;
}

.home-gallery-slider .swiper-pagination-bullet-active {
    background: var(--hayyak-primary);
}

.home-gallery-slider .home-gallery-pagination {
    position: static;
    margin-top: 14px;
    text-align: center;
}

.gallery-card-video-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 4px 9px;
}

.home-gallery-actions {
    margin-top: 22px;
    text-align: center;
}

.home-gallery-view-more {
    display: inline-block;
    border: 1px solid var(--hayyak-primary);
    background: var(--hayyak-primary);
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    padding: 10px 18px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.home-gallery-view-more:hover,
.home-gallery-view-more:focus-visible {
    background: var(--hayyak-primary-dark);
    border-color: var(--hayyak-primary-dark);
}

.home-gallery-empty {
    margin-top: 18px;
    text-align: center;
    color: var(--hayyak-muted);
}

.home-latest-blog-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-latest-blog-card {
    border: 1px solid var(--hayyak-border);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.home-latest-blog-image-link {
    display: block;
}

.home-latest-blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.home-latest-blog-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c93a8;
    font-weight: 600;
}

.home-latest-blog-content {
    padding: 14px;
}

.home-latest-blog-title {
    margin: 0 0 8px;
    font-size: 1.05rem;
    line-height: 1.35;
    color: var(--hayyak-primary);
}

.home-latest-blog-title a:hover,
.home-latest-blog-title a:focus-visible {
    color: var(--hayyak-accent);
}

.home-latest-blog-excerpt {
    margin: 0 0 12px;
    color: var(--hayyak-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.home-latest-blog-readmore {
    font-weight: 700;
    color: var(--hayyak-primary);
}

.home-latest-blog-readmore:hover,
.home-latest-blog-readmore:focus-visible {
    color: var(--hayyak-accent);
}

.home-latest-blog-empty {
    margin-top: 18px;
    text-align: center;
    color: var(--hayyak-muted);
}

.home-latest-blog-actions {
    margin-top: 20px;
    text-align: center;
}

.home-latest-blog-view-all {
    display: inline-block;
    border: 1px solid var(--hayyak-primary);
    background: var(--hayyak-primary);
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    padding: 10px 18px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.home-latest-blog-view-all:hover,
.home-latest-blog-view-all:focus-visible {
    background: var(--hayyak-primary-dark);
    border-color: var(--hayyak-primary-dark);
}

/* Gallery page */
.gallery-page {
    max-width: 1240px;
    margin: 0 auto;
    padding: 52px 20px 70px;
}

.gallery-page-header {
    text-align: center;
    margin-bottom: 24px;
}

.gallery-page-title {
    margin: 0 0 10px;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1.15;
    color: var(--hayyak-primary);
}

.gallery-page-intro {
    margin: 0 auto;
    max-width: 700px;
    line-height: 1.6;
    color: var(--hayyak-muted);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gallery-grid-item {
    border: 1px solid var(--hayyak-border);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: #fff;
    box-shadow: 0 12px 24px rgba(9, 30, 45, 0.08);
    cursor: pointer;
    padding: 0;
}

.gallery-grid-item img,
.gallery-grid-item video {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.gallery-grid-video-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 4px 9px;
}

.gallery-empty {
    text-align: center;
    color: var(--hayyak-muted);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.82);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox-content {
    width: min(1180px, 100%);
    max-height: calc(100vh - 72px);
}

.gallery-lightbox-content img,
.gallery-lightbox-content video {
    width: 100%;
    max-height: calc(100vh - 72px);
    object-fit: contain;
    display: block;
}

.gallery-lightbox-close {
    position: absolute;
    top: 12px;
    right: 18px;
    border: 0;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.gallery-lightbox-open {
    overflow: hidden;
}

.faq-list {
    margin-top: 28px;
}

.faq-section {
    background: #efeeed;
    border-radius: 14px;
    padding-bottom: 26px;
}

.faq-item {
    border: 1px solid #e7e5e4;
    background: #fff;
    border-radius: 8px;
    padding: 0 18px;
    box-shadow: none;
}

.faq-item + .faq-item {
    margin-top: 14px;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 20px 0;
    border: 0;
    background: none;
    text-align: left;
    font-size: 1.08rem;
    font-weight: 700;
    color: #111827;
    cursor: pointer;
}

.faq-icon {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.2s ease;
    color: #6b7280;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.28s ease, opacity 0.22s ease;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 20px;
    color: var(--hayyak-muted);
    line-height: 1.6;
}

.faq-item.is-open .faq-answer {
    max-height: 260px;
    opacity: 1;
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
}

/* Catalog page */
.catalog-page {
    max-width: 1240px;
    margin: 0 auto;
    padding: 52px 20px 70px;
}

.catalog-page-header {
    text-align: center;
    margin-bottom: 26px;
}

.catalog-page-title {
    margin: 0 0 10px;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1.15;
    color: var(--hayyak-primary);
}

.catalog-page-intro {
    margin: 0 auto;
    max-width: 680px;
    color: var(--hayyak-muted);
    line-height: 1.6;
}

.catalog-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.catalog-category-card {
    border: 1px solid var(--hayyak-border);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    padding: 12px;
}

.catalog-category-image-link {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    background: #eef3f7;
}

.catalog-media-trigger {
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #eef3f7;
    cursor: pointer;
    text-align: left;
}

.catalog-media-trigger:disabled {
    cursor: default;
}

.catalog-category-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.catalog-category-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c93a8;
    font-weight: 600;
}

.catalog-category-title {
    margin: 12px 2px 14px;
    font-size: 1.05rem;
    line-height: 1.35;
    color: var(--hayyak-primary);
}

.catalog-category-title a:hover,
.catalog-category-title a:focus-visible {
    color: var(--hayyak-accent);
}

.catalog-term-page {
    padding-top: 38px;
}

.catalog-breadcrumb {
    margin-bottom: 14px;
    color: var(--hayyak-muted);
    font-size: 0.92rem;
}

.catalog-breadcrumb a {
    color: var(--hayyak-primary-dark);
    font-weight: 600;
}

.catalog-breadcrumb a:hover,
.catalog-breadcrumb a:focus-visible {
    color: var(--hayyak-accent);
}

.catalog-breadcrumb-separator {
    margin: 0 8px;
    color: #9db0c2;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.catalog-card {
    border: 1px solid var(--hayyak-border);
    border-radius: 16px;
    background: #fff;
    padding: 14px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 24px rgba(12, 34, 50, 0.08);
}

.catalog-card-media {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #eef3f7;
    position: relative;
}

.catalog-card-cover,
.catalog-card-media img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.catalog-card-video {
    object-fit: cover;
    background: #000;
}

.catalog-card-video-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 4px 9px;
}

.catalog-card-placeholder {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c93a8;
    font-weight: 600;
}

.catalog-card-title {
    margin: 14px 2px 8px;
    font-size: 1.08rem;
    line-height: 1.35;
    color: var(--hayyak-primary);
}

.catalog-card-size {
    margin: 0 2px 14px;
    color: var(--hayyak-muted);
    font-size: 0.95rem;
}

.catalog-card-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
}

.catalog-btn {
    flex: 1;
    text-align: center;
    border-radius: 8px;
    padding: 9px 10px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.catalog-btn-view {
    background: var(--hayyak-primary);
    border-color: var(--hayyak-primary);
    color: #fff;
}

.catalog-btn-download {
    background: #fff;
    border-color: var(--hayyak-accent);
    color: var(--hayyak-accent);
}

.catalog-btn-disabled {
    background: #eff3f7;
    border-color: #d8e1e9;
    color: #688198;
}

.catalog-empty {
    margin: 18px 0 0;
    color: var(--hayyak-muted);
    text-align: center;
}

/* Blog list */
.blog-list-page {
    max-width: 1240px;
    margin: 0 auto;
    padding: 52px 20px 70px;
}

.blog-list-header {
    text-align: center;
    margin-bottom: 28px;
}

.blog-list-title {
    margin: 0 0 10px;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1.15;
    color: var(--hayyak-primary);
}

.blog-list-intro {
    margin: 0 auto;
    max-width: 700px;
    line-height: 1.65;
    color: var(--hayyak-muted);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.blog-card {
    border: 1px solid var(--hayyak-border);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(12, 34, 50, 0.08);
    display: flex;
    flex-direction: column;
}

.blog-card-image-link {
    display: block;
}

.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blog-card-image-placeholder {
    background: #eef3f7;
    color: #7c93a8;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-content {
    padding: 16px;
}

.blog-card-title {
    margin: 0 0 10px;
    font-size: 1.08rem;
    line-height: 1.35;
    color: var(--hayyak-primary);
}

.blog-card-title a:hover,
.blog-card-title a:focus-visible {
    color: var(--hayyak-accent);
}

.blog-card-excerpt {
    margin: 0;
    color: var(--hayyak-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.blog-pagination {
    margin-top: 28px;
}

.blog-pagination .page-numbers {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.blog-pagination .page-numbers li {
    margin: 0;
}

.blog-pagination .page-numbers a,
.blog-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid var(--hayyak-border);
    background: #fff;
    font-weight: 700;
    color: var(--hayyak-primary);
    font-size: 0.9rem;
}

.blog-pagination .page-numbers .current {
    background: var(--hayyak-primary);
    border-color: var(--hayyak-primary);
    color: #fff;
}

.blog-empty {
    text-align: center;
    color: var(--hayyak-muted);
}

/* Blog single */
.blog-single-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 70px;
}

.blog-single-article {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.blog-single-back {
    display: inline-block;
    margin: 18px 20px 0;
    font-weight: 700;
    color: var(--hayyak-primary);
}

.blog-single-back:hover,
.blog-single-back:focus-visible {
    color: var(--hayyak-accent);
}

.blog-single-cover-wrap {
    margin-top: 14px;
}

.blog-single-cover {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    display: block;
}

.blog-single-header {
    padding: 22px 24px 0;
}

.blog-single-title {
    margin: 0;
    color: var(--hayyak-primary);
    line-height: 1.2;
    font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.blog-single-meta {
    margin: 10px 0 0;
    color: var(--hayyak-muted);
    font-size: 0.95rem;
}

.blog-single-content {
    padding: 20px 24px 30px;
    color: #28323d;
    line-height: 1.85;
}

.blog-single-content > *:first-child {
    margin-top: 0;
}

.blog-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.blog-single-content h2,
.blog-single-content h3,
.blog-single-content h4 {
    color: var(--hayyak-primary);
    line-height: 1.3;
}

.blog-single-page-links {
    margin-top: 20px;
}

/* Contact page */
.contact-page {
    max-width: 1240px;
    margin: 0 auto;
    padding: 52px 20px 70px;
}

.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-title {
    margin: 0 0 10px;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    color: var(--hayyak-primary);
    line-height: 1.15;
}

.contact-intro {
    margin: 0 auto;
    max-width: 780px;
    color: var(--hayyak-muted);
    line-height: 1.65;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.contact-map-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--hayyak-border);
    min-height: 470px;
    box-shadow: 0 12px 24px rgba(12, 34, 50, 0.08);
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 470px;
    border: 0;
    display: block;
}

.contact-form-card {
    border: 1px solid var(--hayyak-border);
    border-radius: 16px;
    background: #fff;
    padding: 22px;
    box-shadow: 0 12px 24px rgba(12, 34, 50, 0.08);
}

.contact-form-card h2 {
    margin: 0 0 8px;
    color: var(--hayyak-primary);
}

.contact-form-card > p {
    margin: 0 0 16px;
    color: var(--hayyak-muted);
}

.contact-form {
    display: grid;
    gap: 10px;
}

.contact-form label {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--hayyak-primary-dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--hayyak-border);
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(105, 48, 103, 0.2);
    border-color: var(--hayyak-primary);
}

.contact-form button {
    margin-top: 8px;
    border: 0;
    border-radius: 10px;
    padding: 11px 14px;
    font-weight: 700;
    cursor: pointer;
    color: #fff;
    background: var(--hayyak-primary);
}

.contact-form button:hover,
.contact-form button:focus-visible {
    background: var(--hayyak-primary-dark);
}

.contact-form-notice {
    margin-bottom: 14px;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 0.92rem;
    font-weight: 600;
}

.contact-form-notice.is-success {
    background: #e7f7ee;
    color: #1e7c46;
}

.contact-form-notice.is-error {
    background: #fdecec;
    color: #9e2433;
}

.contact-info-section {
    margin-top: 28px;
}

.contact-info-section h2 {
    margin: 0 0 14px;
    color: var(--hayyak-primary);
    text-align: center;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.contact-info-card {
    border: 1px solid var(--hayyak-border);
    border-radius: 14px;
    background: #fff;
    padding: 16px;
}

.contact-info-card h3 {
    margin: 0 0 8px;
    color: var(--hayyak-primary);
    font-size: 1rem;
}

.contact-info-card p {
    margin: 0;
    line-height: 1.55;
    color: var(--hayyak-muted);
}

.contact-info-card p + p {
    margin-top: 8px;
}

.contact-info-card a {
    color: var(--hayyak-primary);
    font-weight: 600;
}

.contact-info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-info-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--hayyak-primary);
    flex: 0 0 18px;
}

.contact-info-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.contact-info-card a:hover,
.contact-info-card a:focus-visible {
    color: var(--hayyak-accent);
}

/* About page */
.about-page {
    max-width: 1240px;
    margin: 0 auto;
    padding: 52px 20px 70px;
}

.about-hero {
    text-align: center;
    padding: 8px 0 6px;
}

.about-hero-kicker {
    margin: 0 0 10px;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--hayyak-accent);
}

.about-hero-title {
    margin: 0 0 14px;
    color: var(--hayyak-primary);
    line-height: 1.2;
    font-size: clamp(2rem, 3.3vw, 2.9rem);
}

.about-hero-intro {
    margin: 0 auto;
    max-width: 940px;
    color: var(--hayyak-muted);
    line-height: 1.72;
    font-size: 1.03rem;
}

.about-split {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.about-split-reverse .about-split-media {
    order: 2;
}

.about-split-reverse .about-split-content {
    order: 1;
}

.about-split-media {
    border: 1px solid var(--hayyak-border);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.about-split-media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.about-split-content h2,
.about-content-block h2,
.about-faq h2 {
    margin: 0 0 12px;
    color: var(--hayyak-primary);
    line-height: 1.25;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.about-split-content p,
.about-content-block p {
    margin: 0 0 12px;
    color: #374151;
    line-height: 1.75;
}

.about-content-block {
    margin-top: 34px;
}

.about-check-list {
    margin: 0;
    padding-left: 20px;
    color: #374151;
    line-height: 1.75;
}

.about-check-list li + li {
    margin-top: 8px;
}

.about-cta-row {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-cta-btn {
    display: inline-block;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 700;
    border: 1px solid transparent;
}

.about-cta-primary {
    background: var(--hayyak-primary);
    border-color: var(--hayyak-primary);
    color: #fff;
}

.about-cta-primary:hover,
.about-cta-primary:focus-visible {
    background: var(--hayyak-primary-dark);
    border-color: var(--hayyak-primary-dark);
}

.about-cta-secondary {
    background: #fff;
    border-color: var(--hayyak-accent);
    color: var(--hayyak-accent);
}

.about-cta-secondary:hover,
.about-cta-secondary:focus-visible {
    background: #fff6ee;
}

.about-faq {
    margin-top: 34px;
}

.about-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.about-faq-item {
    border: 1px solid var(--hayyak-border);
    border-radius: 12px;
    background: #fff;
    padding: 16px;
}

.about-faq-item h3 {
    margin: 0 0 8px;
    color: var(--hayyak-primary);
    line-height: 1.35;
    font-size: 1.02rem;
}

.about-faq-item p {
    margin: 0;
    color: var(--hayyak-muted);
    line-height: 1.65;
}

/* Responsive */
@media (max-width: 900px) {
    body {
        padding-top: 108px;
    }

    .hayyak-header-inner {
        min-height: 74px;
    }

    .hayyak-announcement-bar {
        min-height: 34px;
        padding: 7px 12px;
    }

    .hayyak-announcement-bar p {
        font-size: 0.84rem;
    }

    .hayyak-menu-toggle {
        display: inline-flex;
    }

    .hayyak-main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.97);
        border-top: 1px solid var(--hayyak-border);
        border-bottom: 1px solid var(--hayyak-border);
        box-shadow: 0 14px 24px rgba(4, 17, 29, 0.08);
    }

    .hayyak-nav-open .hayyak-main-nav {
        display: block;
    }

    .hayyak-main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
    }

    .hayyak-main-nav a {
        display: block;
        border-radius: 10px;
        font-size: 14px;
    }

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

    .home-hero {
        padding: 12px 12px 0;
    }

    .home-hero .hero-slider {
        height: min(72vh, 680px);
        border-radius: 18px;
    }

    .home-hero-content {
        left: 20px;
        right: 20px;
        bottom: 28px;
        max-width: 100%;
    }

    .home-hero .swiper-button-prev,
    .home-hero .swiper-button-next {
        display: none;
    }

    .counter-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .boxes-container {
        grid-template-columns: 1fr;
    }

    .kitchen-spotlight-grid {
        grid-template-columns: 1fr;
    }

    .kitchen-spotlight-slider img {
        height: 340px;
    }

    .tile-compare-row {
        grid-template-columns: 1fr;
    }

    .tile-compare-media {
        width: min(100%, 420px);
    }

    .tile-compare-row-reverse .tile-compare-media,
    .tile-compare-row-reverse .tile-compare-content {
        order: initial;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-latest-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-split {
        grid-template-columns: 1fr;
    }

    .about-split-reverse .about-split-media,
    .about-split-reverse .about-split-content {
        order: initial;
    }

    .about-split-media img {
        height: 360px;
    }

    .about-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 782px) {
    .admin-bar .hayyak-header {
        top: 46px;
    }

    .hayyak-whatsapp-float {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 18px;
    }

    .counter-section,
    .kitchen-spotlight-section,
    .mission-vision-quality-section,
    .home-products-section,
    .tile-compare-section,
    .home-gallery-section,
    .home-latest-blog-section,
    .faq-section {
        padding-top: 56px;
    }

    .counter-container {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .faq-item.is-open .faq-answer {
        max-height: 260px;
    }

    .catalog-page {
        padding-top: 40px;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .catalog-categories-grid {
        grid-template-columns: 1fr;
    }

    .home-latest-blog-grid {
        grid-template-columns: 1fr;
    }

    .catalog-card-cover,
    .catalog-card-media img,
    .catalog-card-placeholder {
        height: 280px;
    }

    .catalog-category-image {
        height: 250px;
    }

    .blog-list-page {
        padding-top: 40px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-single-page {
        padding-top: 28px;
    }

    .blog-single-header {
        padding: 20px 18px 0;
    }

    .blog-single-content {
        padding: 18px 18px 26px;
    }

    .blog-single-back {
        margin-left: 18px;
    }

    .contact-page {
        padding-top: 40px;
    }

    .contact-map-wrap,
    .contact-map-wrap iframe {
        min-height: 360px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .gallery-page {
        padding-top: 40px;
    }

    .about-page {
        padding-top: 40px;
    }

    .about-split-media img {
        height: 300px;
    }
}

h1 {
    text-transform: uppercase;
}
