:root {
    --orange-main: #ff5f1f;
    --orange-gradient: linear-gradient(135deg, #ff5f1f 0%, #ff8c00 100%);
    --bg-light: #fffaf7;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: #2d3436;
    overflow-x: hidden;
}

/* Branding */
.navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
}

.heart {
    color: var(--orange-main);
}

/* Navbar Customization */
.nav-link {
    font-weight: 600;
    color: #4b4b4b !important;
    font-size: 0.95rem;
    transition: color 0.2s;
}

    .nav-link:hover {
        color: var(--orange-main) !important;
    }

/* Orange lines for mobile menu - Increased thickness to 3px */
@media (max-width: 991.98px) {
    .navbar-nav .nav-item:not(:last-child) {
        border-bottom: 3px solid rgba(255, 95, 31, 0.3);
    }

    .navbar-collapse {
        padding: 1rem 0;
    }

    .nav-link {
        padding: 12px 0;
    }
}

/* Hero */
.hero-banner {
    background: var(--orange-gradient);
    color: white;
    padding: 30px 0;
    border-radius: 0 0 40px 40px;
    margin-bottom: 20px;
}

    .hero-banner h1 {
        font-size: 2rem;
        outline: none;
    }

    .hero-banner p {
        font-size: 1rem;
        margin-bottom: 0;
    }

/* Standardized Scroll Wrapper for alignment */
.scroll-wrapper-relative {
    position: relative;
    padding: 0 10px;
    margin-bottom: 1.5rem;
}

/* Navigation Arrows */
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    background: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--orange-main);
    z-index: 20;
    transition: all 0.2s;
    cursor: pointer;
}

    .scroll-arrow:hover {
        background: var(--orange-main);
        color: white;
        transform: translateY(-50%) scale(1.1);
    }

.arrow-left {
    left: -5px;
}

.arrow-right {
    right: -5px;
}

@media (min-width: 992px) {
    .scroll-arrow {
        display: flex;
    }
}

/* Category Scroller Styles */
.category-scroller {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    justify-content: flex-start;
    scroll-behavior: smooth;
}

.hide-scroll::-webkit-scrollbar {
    display: none;
}

.hide-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px; /*70px;*/
    cursor: pointer;
}

.cat-icon-box {
    width: 90px; /*45px;*/
    height: 90px; /*45px;*/
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--orange-main);
    transition: all 0.2s ease;
    margin-bottom: 5px;
    border: 1px solid rgba(255, 95, 31, 0.1);
}

.cat-item:hover .cat-icon-box {
    background: var(--orange-main);
    color: white;
    transform: translateY(-3px);
}

.story-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #636e72;
    text-align: center;
    white-space: nowrap;
}

/* AI Feature Section Styles */
.ai-card {
    background: #fff;
    border: 2px solid #ff5f1f22;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .ai-card:hover {
        border-color: var(--orange-main);
        box-shadow: 0 10px 30px rgba(255, 95, 31, 0.1);
    }

.ai-badge {
    background: var(--orange-gradient);
    color: white;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 800;
}

.ai-response-box {
    background: #fdf2e9;
    border-radius: 16px;
    padding: 15px;
    margin-top: 15px;
    display: none;
    font-size: 0.9rem;
    border-left: 4px solid var(--orange-main);
}

/* Top Picks Styles */
.deals-grid-scroller {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: column;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 0 15px 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.rect-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 12px;
    width: 224px;
    box-shadow: 0 2px 8px rgba(255, 95, 31, 0.05);
    border: 1px solid rgba(255, 95, 31, 0.05);
    scroll-snap-align: start;
    transition: transform 0.2s;
}

    .rect-card:hover {
        transform: translateY(-2px);
    }

.rect-img {
    width: 51px;
    height: 51px;
    background: #fdf2e9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.rect-info .fw-bold {
    font-size: 0.95rem;
}

/* Standard Horizontal Scroll Styling */
.scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px 0 20px 0;
    scroll-behavior: smooth;
}

.scroll-item {
    flex: 0 0 224px;
    scroll-snap-align: start;
}

/* Product Card Images - Uniform Size */
.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Product Cards - Scaled Down */
.product-card {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(255, 95, 31, 0.08);
    transition: transform 0.3s;
    height: 100%;
}

    .product-card:hover {
        transform: scale(1.03);
    }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 0 5px;
}

    .section-header h4 {
        font-size: 1.1rem;
    }

.view-all {
    color: var(--orange-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
}

.product-card h6 {
    font-size: 1rem;
}

.product-card p {
    font-size: 0.85rem;
    line-height: 1.4;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.cta-container {
    height: 50vh;
    display: flex;
    overflow: hidden;
}

.cta-card {
    position: relative;
    flex: 1;
    height: 100%;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.5s ease;
}

    .cta-card img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s ease-out;
        z-index: 1;
    }

    .cta-card:hover img {
        transform: scale(1.05);
    }

.overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.overlay-left {
    background: linear-gradient(to left, rgba(249, 115, 22, 0.8) 0%, rgba(249, 115, 22, 0.4) 60%, transparent 100%);
}

.overlay-right {
    background: linear-gradient(to right, rgba(249, 115, 22, 0.8) 0%, rgba(249, 115, 22, 0.4) 60%, transparent 100%);
}

.cta-card:hover .overlay {
    opacity: 0.9;
}

.cta-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    color: white;
}

.content-left {
    align-items: flex-end;
    text-align: right;
}

.content-right {
    align-items: flex-start;
    text-align: left;
}

.cta-title {
    font-size: 5rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 1.125rem;
    max-width: 320px;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.content-left .cta-description {
    transform: translateX(1.5rem);
}

.content-right .cta-description {
    transform: translateX(-1.5rem);
}

.cta-card:hover .cta-description {
    transform: translateX(0);
}

@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
    }

    .cta-card {
        flex: 1;
    }

    .cta-title {
        font-size: 3.5rem;
    }

    .cta-content {
        padding: 2rem;
    }
}

/*--------------------------------------------------------------------------------------------------------------*/

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }