/* ==========================================================================
   Home page — modern redesign
   Scoped under .hp-home-page (classes prefixed hp-) so shared theme classes
   (.btn_full, .owl-carousel, .tour_container, ...) keep their old look
   wherever else they're used.
   Palette: coral #FF6B4A / teal #1F7A6C / cream #FFF6EE on warm neutrals.
   Type: Fredoka (headings) + Nunito Sans (body) — loaded from the master page.
   ========================================================================== */

.hp-home-page {
    --hp-coral: #FF6B4A;
    --hp-coral-dark: #E24E2F;
    --hp-coral-soft: rgba(255, 107, 74, 0.08);
    --hp-teal: #1F7A6C;
    --hp-teal-dark: #145E53;
    --hp-gold: #FFB238;
    --hp-green: #2FA36B;
    --hp-danger: #E14D67;
    --hp-cream: #FFF6EE;
    --hp-ink: #241F1B;
    --hp-body: #6B6058;
    --hp-muted: #A49A91;
    --hp-border: #F0E2D6;
    --hp-surface: #FFFFFF;
    --hp-radius: 16px;
    --hp-radius-sm: 10px;
    --hp-shadow: 0 10px 30px rgba(36, 31, 27, 0.07);
    --hp-shadow-hover: 0 14px 34px rgba(36, 31, 27, 0.13);

    color: var(--hp-body);
    font-family: "Nunito Sans", Arial, sans-serif;
}

.hp-home-page .container {
    max-width: 1200px;
}

/* ---------- Section scaffolding ---------- */

.hp-section {
    padding: 48px 0;
}

.hp-section-tint {
    background: var(--hp-cream);
}

.hp-section-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 32px;
}

.hp-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--hp-teal);
    background: rgba(31, 122, 108, 0.09);
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.hp-section-head h2 {
    margin: 0 0 8px;
    font-size: 30px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    color: var(--hp-ink);
}

.hp-section-head h2 span {
    color: var(--hp-coral);
}

.hp-section-head p {
    margin: 0;
    font-size: 15.5px;
    color: var(--hp-muted);
}

/* ---------- Hero carousel ---------- */

.hp-hero {
    position: relative;
    margin: 16px auto 0;
    max-width: 1400px;
    padding: 0 16px;
}

.hp-home-page #carousel-home.hp-hero .owl-carousel .owl-slide {
    height: 220px;
    border-radius: var(--hp-radius);
    overflow: hidden;
}

@media (min-width: 576px) {
    .hp-home-page #carousel-home.hp-hero .owl-carousel .owl-slide {
        height: 320px;
    }
}

@media (min-width: 992px) {
    .hp-home-page #carousel-home.hp-hero .owl-carousel .owl-slide {
        height: 460px;
    }
}

.hp-hero-slide {
    display: block;
    width: 100%;
    height: 100%;
}

.hp-hero .owl-carousel .owl-item {
    border-radius: var(--hp-radius);
    overflow: hidden;
}

.hp-hero .owl-theme .owl-dots {
    bottom: 16px;
}

.hp-hero .owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.55);
    width: 8px;
    height: 8px;
    margin: 4px;
}

.hp-hero .owl-theme .owl-dots .owl-dot.active span,
.hp-hero .owl-theme .owl-dots .owl-dot:hover span {
    background: #fff;
    width: 22px;
    border-radius: 5px;
}

/* ---------- Customized products collage ---------- */

.hp-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: 12px;
}

.hp-collage-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.hp-collage-wide {
    grid-column: 1 / 3;
}

.hp-collage a {
    position: relative;
    display: block;
    border-radius: var(--hp-radius);
    overflow: hidden;
    background: linear-gradient(135deg, var(--hp-cream), #FFE9D6);
    box-shadow: var(--hp-shadow);
}

.hp-collage img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.35s ease;
}

.hp-collage a:hover img {
    transform: scale(1.06);
}

@media (min-width: 768px) {
    .hp-collage {
        grid-auto-rows: 190px;
        gap: 18px;
    }
}

@media (min-width: 992px) {
    .hp-collage {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }

    .hp-collage-main {
        grid-row: 1 / 3;
    }

    .hp-collage-wide {
        grid-column: 2 / 4;
    }
}

/* ---------- Category grid ---------- */

.hp-cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (min-width: 768px) {
    .hp-cat-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .hp-cat-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;
    }
}

.hp-cat-card {
    position: relative;
    display: block;
    background: var(--hp-surface);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(36, 31, 27, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hp-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hp-shadow-hover);
    text-decoration: none;
}

.hp-cat-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: var(--hp-coral);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 999px;
}

.hp-cat-media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--hp-cream), #FFE0D0);
}

.hp-cat-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.hp-cat-card:hover .hp-cat-media img {
    transform: scale(1.06);
}

.hp-cat-offer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 22px 12px 8px;
}

.hp-cat-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 14px 16px;
}

.hp-cat-body h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--hp-ink);
    text-transform: none;
    line-height: 1.3;
}

.hp-cat-cta {
    flex: none;
    font-size: 12px;
    font-weight: 800;
    color: var(--hp-teal);
    white-space: nowrap;
}

.hp-cat-cta i {
    margin-left: 2px;
}

/* ---------- Top-selling product carousel ---------- */

.hp-home-page .hp-product-carousel {
    padding-bottom: 8px;
}

.hp-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--hp-surface);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(36, 31, 27, 0.05);
}

.hp-card-media {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--hp-cream), #FFE9D6);
}

.hp-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.hp-card:hover .hp-card-media img {
    transform: scale(1.05);
}

.hp-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
    padding: 16px;
}

.hp-card-title {
    margin: 0;
    font-family: "Nunito Sans", Arial, sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.4;
    min-height: 2.8em;
    color: var(--hp-ink);
    text-transform: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hp-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.hp-price {
    font-family: "Fredoka", "Nunito Sans", Arial, sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--hp-ink);
}

.hp-price sup {
    font-size: 11px;
    margin-right: 1px;
}

.hp-mrp {
    font-size: 13px;
    color: var(--hp-muted);
    text-decoration: line-through;
}

.hp-mrp sup {
    font-size: 10px;
}

.hp-buy-btn {
    display: block;
    margin-top: auto;
    background: var(--hp-coral);
    color: #fff;
    text-align: center;
    font-size: 13.5px;
    font-weight: 800;
    padding: 10px 16px;
    border: none;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.hp-buy-btn:hover,
.hp-buy-btn:focus {
    background: var(--hp-coral-dark);
    color: #fff;
    text-decoration: none;
}

.hp-home-page .owl-car .owl-nav .nav-btn {
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    background: var(--hp-surface);
    border: 1px solid var(--hp-border);
    border-radius: 50%;
    box-shadow: var(--hp-shadow);
    color: var(--hp-ink);
}

.hp-home-page .owl-car .owl-nav .nav-btn:hover {
    background: var(--hp-coral);
    border-color: var(--hp-coral);
    color: #fff;
}

/* ---------- Promo banner ---------- */

.hp-promo {
    position: relative;
    margin: 8px 0 0;
    padding: 90px 20px;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.hp-promo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(36, 31, 27, 0.35), rgba(36, 31, 27, 0.65));
}

.hp-promo-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.hp-promo-inner h3 {
    margin: 0 0 10px;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hp-promo-inner h3:empty {
    display: none;
}

.hp-promo-inner p {
    margin: 0 0 22px;
    font-size: 15.5px;
    opacity: 0.92;
}

.hp-promo-inner p:empty {
    display: none;
}

.hp-promo-cta {
    display: inline-block;
    background: var(--hp-coral);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    padding: 13px 30px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hp-promo-cta:hover,
.hp-promo-cta:focus {
    background: var(--hp-coral-dark);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* ---------- Feature cards ---------- */

.hp-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .hp-features {
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;
    }
}

.hp-feature-card {
    background: var(--hp-surface);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    box-shadow: var(--hp-shadow);
    padding: 26px 18px;
    text-align: center;
}

.hp-feature-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 14px;
    border-radius: 50%;
    font-size: 24px;
    color: var(--hp-coral);
    background: var(--hp-coral-soft);
}

.hp-feature-card:nth-child(2n) i {
    color: var(--hp-teal);
    background: rgba(31, 122, 108, 0.09);
}

.hp-feature-card h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    text-transform: none;
    color: var(--hp-ink);
}

.hp-feature-card h3 span {
    color: var(--hp-coral);
}

.hp-feature-card:nth-child(2n) h3 span {
    color: var(--hp-teal);
}

.hp-feature-card p {
    margin: 0;
    font-size: 13.5px;
    color: var(--hp-muted);
}

/* ---------- Why order with Alcazar ---------- */

.hp-why-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
}

@media (min-width: 768px) {
    .hp-why-row {
        grid-template-columns: 1.1fr 1fr;
        gap: 40px;
    }
}

.hp-why-media {
    display: none;
    border-radius: var(--hp-radius);
    overflow: hidden;
}

@media (min-width: 768px) {
    .hp-why-media {
        display: block;
    }
}

.hp-why-media img {
    width: 100%;
    display: block;
}

.hp-why-content h3 {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 600;
    text-transform: none;
    color: var(--hp-ink);
}

.hp-why-content h3 span {
    color: var(--hp-coral);
}

.hp-why-content > p {
    margin: 0 0 20px;
    font-size: 14.5px;
    line-height: 1.7;
}

.hp-why-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hp-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: var(--hp-body);
}

.hp-why-list li span {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--hp-teal);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

/* ---------- Blog ---------- */

.hp-blog-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(120deg, var(--hp-teal), var(--hp-teal-dark));
    color: #fff;
    border-radius: var(--hp-radius);
    padding: 26px 30px;
    margin-bottom: 28px;
}

.hp-blog-cta h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    color: #fff;
}

.hp-blog-cta-btn {
    flex: none;
    display: inline-block;
    background: #fff;
    color: var(--hp-teal-dark);
    font-weight: 800;
    font-size: 13.5px;
    padding: 11px 24px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.hp-blog-cta-btn:hover {
    transform: translateY(-2px);
    color: var(--hp-teal-dark);
    text-decoration: none;
}

.hp-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 576px) {
    .hp-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .hp-blog-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hp-blog-card {
    display: block;
    background: var(--hp-surface);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(36, 31, 27, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hp-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hp-shadow-hover);
    text-decoration: none;
}

.hp-blog-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--hp-cream), #FFE9D6);
}

.hp-blog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-blog-body {
    padding: 16px;
}

.hp-blog-body h4 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--hp-ink);
    line-height: 1.4;
}

.hp-blog-body h4 span {
    color: var(--hp-ink);
}

.hp-blog-body p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--hp-muted);
}

/* ---------- Reviews strip ---------- */

.hp-review-stat {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin: -14px 0 26px;
    font-size: 14px;
    color: var(--hp-muted);
}

.hp-review-stat strong {
    font-family: "Fredoka", "Nunito Sans", Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--hp-ink);
}

.hp-review-row {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 4px 18px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.hp-review-card {
    flex: none;
    scroll-snap-align: start;
    width: 78%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    background: var(--hp-surface);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    box-shadow: 0 4px 14px rgba(36, 31, 27, 0.05);
    padding: 20px;
}

@media (min-width: 576px) {
    .hp-review-card {
        width: 340px;
    }
}

.hp-review-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.hp-review-avatar {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, var(--hp-cream), #FFE0D0);
}

.hp-review-name {
    margin: 0;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--hp-ink);
}

.hp-review-date {
    font-size: 12px;
    color: var(--hp-muted);
}

.hp-review-card .rating {
    font-size: 13px;
    margin-bottom: 8px;
}

.hp-review-card .rating .icon-star.voted {
    color: var(--hp-gold);
}

.hp-review-card .rating .icon-star-empty {
    color: #E8DCD2;
}

.hp-review-title {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    color: var(--hp-ink);
}

.hp-review-text {
    margin: 0 0 14px;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--hp-body);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hp-review-product {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed var(--hp-border);
    text-decoration: none;
}

.hp-review-product img {
    flex: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--hp-cream);
}

.hp-review-product span {
    font-size: 12px;
    font-weight: 700;
    color: var(--hp-teal);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---------- Trust / payment badges strip ---------- */

.hp-trust-strip {
    background: var(--hp-ink);
}

.hp-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

@media (min-width: 768px) {
    .hp-trust-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.hp-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.hp-trust-item i {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 19px;
    color: #7A4B2E;
    background: #fff;
}

.hp-trust-item h4 {
    margin: 0 0 2px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.hp-trust-item p {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 575.98px) {
    .hp-trust-item i {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .hp-trust-item h4 {
        font-size: 12.5px;
    }

    .hp-trust-item p {
        font-size: 11px;
    }
}

/* ---------- Bottom CMS content ---------- */

.hp-desc {
    background: var(--hp-surface);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    box-shadow: var(--hp-shadow);
    padding: 26px 28px;
    font-size: 14.5px;
    line-height: 1.7;
    overflow-x: auto;
}

.hp-desc:empty {
    display: none;
}

.hp-desc h1,
.hp-desc h2,
.hp-desc h3,
.hp-desc h4 {
    color: var(--hp-ink);
    margin: 18px 0 10px;
}

.hp-desc h1:first-child,
.hp-desc h2:first-child,
.hp-desc h3:first-child,
.hp-desc p:first-child {
    margin-top: 0;
}

.hp-desc img {
    max-width: 100%;
    height: auto;
    border-radius: var(--hp-radius-sm);
}

/* ---------- Mobile ---------- */

@media (max-width: 767.98px) {
    .hp-section {
        padding: 32px 0;
    }

    .hp-section-head h2 {
        font-size: 24px;
    }

    .hp-promo {
        padding: 60px 18px;
    }

    .hp-promo-inner h3 {
        font-size: 22px;
    }
}

@media (max-width: 575.98px) {
    .hp-cat-body {
        padding: 10px 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .hp-cat-body h3 {
        font-size: 13.5px;
    }

    .hp-cat-cta {
        font-size: 11.5px;
    }

    .hp-blog-cta {
        padding: 20px;
        justify-content: center;
        text-align: center;
    }
}
