/* Landing Page Styles for Billisa v2.0 */
/* Copyright © 2025 Isaiah Nyalali. All Rights Reserved. */

/* ========================================
   UNIFIED SECTION BORDER STYLING
   Similar to nav border but thinner (1px)
   ======================================== */
.section-bordered {
    border: 1px solid var(--fluent-black);
}

/* Featured Items Cards (entire card) */
.featured-card,
.grid-card {
    border: 1px solid var(--fluent-black);
}

/* About Us Feature Cards */
.feature-card {
    border: 1px solid var(--fluent-black);
}

/* About Us Image */
.about-image img {
    border: 1px solid var(--fluent-black);
}

/* Gallery Cards */
.gallery-item {
    border: 1px solid var(--fluent-black);
}

/* Team Cards */
.team-member {
    border: 1px solid var(--fluent-black);
}

/* Testimonial Cards */
.testimonial-card {
    border: 1px solid var(--fluent-black);
}

/* Navigation */
.landing-nav {
    position: fixed;
    top: 20px;
    left: 5%;
    right: 5%;
    width: 90%;
    background: var(--fluent-white);
    border: 2px solid var(--fluent-black);
    border-radius: 12px;
    padding: 15px 30px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.landing-nav.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--fluent-black);
    cursor: pointer;
    transition: opacity 0.2s;
}

.nav-brand:hover {
    opacity: 0.8;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-brand-name {
    font-size: 20px;
    font-weight: 700;
}

/* Advanced Search Container for Index */
.landing-nav .nav-search-container {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--fluent-white);
    border: 2px solid var(--fluent-black);
    border-radius: 8px;
    padding: 0;
    transition: all 0.2s;
    height: 40px;
    overflow: visible;
    position: relative;
    flex: 1;
    max-width: 400px;
    margin: 0 20px;
}

.landing-nav .nav-search-container:focus-within {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.landing-nav .search-category-dropdown {
    border: none;
    background: var(--fluent-gray-10);
    padding: 0 10px;
    height: 100%;
    font-size: 12px;
    font-weight: 600;
    color: var(--fluent-black);
    cursor: pointer;
    border-right: 2px solid var(--fluent-black);
    min-width: 110px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 22px;
}

.landing-nav .search-input-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    height: 100%;
}

.landing-nav .nav-search-input {
    border: none;
    background: transparent;
    font-size: 13px;
    width: 100%;
    padding: 8px 10px;
    outline: none;
    height: 100%;
}

.landing-nav .nav-search-input::placeholder {
    color: var(--fluent-gray-60);
}

.landing-nav .search-clear-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fluent-gray-60);
    font-size: 12px;
    padding: 6px;
}

.landing-nav .search-clear-btn.visible {
    display: flex;
    align-items: center;
}

.landing-nav .nav-search-btn {
    background: var(--fluent-black);
    border: none;
    cursor: pointer;
    color: var(--fluent-white);
    font-size: 14px;
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-nav .nav-search-btn:hover {
    background: var(--fluent-gray-90);
}

.landing-nav .search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--fluent-white);
    border: 2px solid var(--fluent-black);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1001;
    display: none;
}

.landing-nav .search-suggestions.active {
    display: block;
}

.landing-nav .suggestion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid var(--fluent-gray-20);
}

.landing-nav .suggestion-item:last-child {
    border-bottom: none;
}

.landing-nav .suggestion-item:hover {
    background: var(--fluent-gray-10);
}

.landing-nav .suggestion-img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    background: var(--fluent-gray-20);
}

.landing-nav .suggestion-info {
    flex: 1;
    min-width: 0;
}

.landing-nav .suggestion-name {
    font-weight: 600;
    font-size: 13px;
    color: var(--fluent-black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.landing-nav .suggestion-meta {
    font-size: 11px;
    color: var(--fluent-gray-70);
}

.landing-nav .suggestion-price {
    font-weight: 700;
    color: var(--fluent-success);
}

.landing-nav .suggestions-empty {
    padding: 20px;
    text-align: center;
    color: var(--fluent-gray-70);
    font-size: 13px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
}

.nav-link {
    text-decoration: none;
    color: var(--fluent-gray-80);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
}

.nav-link:hover {
    color: var(--fluent-black);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--fluent-black);
}

/* Mobile Search Toggle */
.landing-nav .search-toggle-mobile {
    display: none;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--fluent-black);
    padding: 8px;
}

/* Mobile Responsive for Search */
@media (max-width: 992px) {
    .landing-nav .nav-search-container {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        max-width: none;
        margin: 0;
        border-radius: 8px;
        z-index: 999;
    }

    .landing-nav .nav-search-container.active {
        display: flex;
    }

    .landing-nav .search-toggle-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .nav-container {
        position: relative;
    }
}

@media (max-width: 576px) {
    .landing-nav .search-category-dropdown {
        display: none;
    }
}

/* Hero Section - 40/60 Split Design */
.hero-section.hero-split {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    /* Dynamic viewport height for mobile */
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
    background: none;
    overflow: hidden;
}

.hero-left {
    width: 40%;
    min-width: 360px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px 40px;
    position: relative;
    z-index: 2;
}

/* Soft glow edge on the split line */
.hero-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -15px;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0) 100%);
    filter: blur(8px);
    z-index: 3;
    pointer-events: none;
}

.hero-split .hero-content {
    max-width: 400px;
    text-align: left;
    padding: 0;
}

.hero-split .hero-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.15;
    color: #fff;
    text-shadow: none;
    animation: fadeInUp 0.8s ease;
}

.hero-split .hero-subtitle {
    font-size: 15px;
    margin-bottom: 28px;
    opacity: 0.85;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: none;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-split .hero-cta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-split .hero-cta a {
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-btn-primary {
    background: #fff !important;
    color: var(--fluent-black) !important;
    border: 2px solid #fff !important;
}

.hero-btn-primary:hover {
    background: transparent !important;
    color: #fff !important;
}

.hero-btn-secondary {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
}

.hero-btn-secondary:hover {
    border-color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.hero-right {
    width: 60%;
    flex: 1;
    /* Background image loaded dynamically from database */
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: var(--fluent-gray-20);
    /* Fallback color */
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.05) 100%);
}

/* Hero responsive */
@media (max-width: 992px) {
    .hero-section.hero-split {
        flex-direction: column;
        height: auto;
        max-height: none;
    }

    .hero-left {
        width: 100%;
        min-height: 60vh;
        padding: 120px 30px 50px;
    }

    .hero-split .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-split .hero-title {
        font-size: 28px;
    }

    .hero-split .hero-cta {
        align-items: center;
    }

    .hero-split .hero-cta a {
        max-width: 280px;
    }

    .hero-right {
        width: 100%;
        min-height: 40vh;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   ORDER TRACKER - Glassmorphism Style
   ======================================== */
.order-tracker-container {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 10;
    animation: fadeInUp 0.6s ease 0.5s both;
}

.tracker-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--fluent-black);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tracker-header i {
    font-size: 18px;
    opacity: 0.9;
}

.tracker-search {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.tracker-input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 14px;
    background: transparent;
    color: #1a1a1a;
    outline: none;
    min-height: 48px;
}

.tracker-input::placeholder {
    color: #888;
    font-size: 13px;
}

.tracker-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    min-height: 48px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
}

.tracker-btn:hover {
    background: #333;
}

.tracker-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.tracker-btn i {
    font-size: 14px;
}

/* Tracker Loading State */
.tracker-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

/* (Inline tracker styles removed - using modal-only approach) */

/* Responsive for mobile */
@media (max-width: 992px) {
    .order-tracker-container {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 90%;
        max-width: 400px;
        margin: 30px auto;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .hero-right {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .tracker-btn span {
        display: none;
    }

    .tracker-btn {
        padding: 14px 16px;
    }
}

/* Order Tracker Modal - Full Details View */
.order-tracker-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.order-tracker-modal.active {
    opacity: 1;
    visibility: visible;
}

.order-tracker-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.order-tracker-modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 95%;
    max-width: 500px;
    max-height: 90vh;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.order-tracker-modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.order-tracker-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: #1a1a1a;
    color: #fff;
}

.order-tracker-modal .modal-header h3 {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.order-tracker-modal .modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}

.order-tracker-modal .modal-close:hover {
    color: #fff;
}

.order-tracker-modal .modal-body {
    padding: 0;
    max-height: calc(90vh - 70px);
    overflow-y: auto;
}

.order-tracker-modal .modal-status {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    margin: 20px;
    border-radius: 12px;
    border: 1px solid;
}

.order-tracker-modal .modal-status i {
    font-size: 24px;
}

.order-tracker-modal .modal-status-label {
    font-weight: 700;
    font-size: 15px;
}

.order-tracker-modal .modal-status-desc {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

.order-tracker-modal .modal-section {
    padding: 0 24px 20px;
}

.order-tracker-modal .modal-section h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

/* Timeline in Modal */
.modal-timeline {
    position: relative;
    padding-left: 30px;
}

.modal-timeline-item {
    position: relative;
    padding-bottom: 20px;
    padding-left: 16px;
}

.modal-timeline-item:last-child {
    padding-bottom: 0;
}

.modal-timeline-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 20px;
    bottom: 0;
    width: 2px;
    background: #e5e5e5;
}

.modal-timeline-item:last-child::before {
    display: none;
}

.modal-timeline-item.completed .timeline-marker {
    background: #059669;
    color: #fff;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #888;
}

.timeline-content {
    padding-top: 2px;
}

.timeline-label {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
}

.timeline-date {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

/* Order details in modal */
.modal-details {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 12px 16px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid #eee;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span:first-child {
    color: #666;
}

.detail-row span:last-child {
    font-weight: 600;
    color: #1a1a1a;
}

/* ========================================
   ENHANCED TRACKING MODAL - Beautiful Design
   ======================================== */

/* Error Modal */
.modal-content.modal-error {
    max-width: 380px;
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
}

.modal-error-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-error-icon i {
    font-size: 32px;
    color: #dc2626;
}

.modal-error h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #1a1a1a;
}

.modal-error p {
    font-size: 14px;
    color: #666;
    margin: 0 0 24px;
    line-height: 1.5;
}

.modal-error-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-error-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Tracking Modal */
.modal-content.modal-tracking {
    max-width: 480px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.modal-header-gradient {
    position: relative;
    padding: 30px 24px;
    text-align: center;
    color: #fff;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.modal-close-white {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-white:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.header-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.header-icon i {
    font-size: 28px;
}

.header-status {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-desc {
    font-size: 14px;
    opacity: 0.9;
}

/* Order ID Badge */
.order-id-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a1a1a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: -20px auto 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: fit-content;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

.order-id-badge i {
    font-size: 14px;
    opacity: 0.7;
}

/* Modal Body */
.modal-body-tracking {
    padding: 24px;
    max-height: 60vh;
    overflow-y: auto;
}

.section-card {
    background: #f8f8f8;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 16px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    margin-bottom: 16px;
}

.section-title i {
    font-size: 14px;
}

/* Progress Bar */
.progress-track {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 10px 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    transition: all 0.3s;
}

.progress-step.complete .step-dot {
    background: #10b981;
    color: #fff;
}

.progress-step.current .step-dot {
    background: #1a1a1a;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(26, 26, 26, 0.2);
}

.step-label {
    font-size: 10px;
    font-weight: 600;
    color: #888;
    margin-top: 8px;
    text-align: center;
    max-width: 60px;
}

.progress-step.complete .step-label,
.progress-step.current .step-label {
    color: #1a1a1a;
}

.progress-line {
    flex: 1;
    height: 3px;
    background: #e5e5e5;
    margin-top: 14px;
    min-width: 20px;
    max-width: 40px;
}

.progress-line.complete {
    background: #10b981;
}

/* Items List */
.items-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
}

.item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f0f0f0, #e5e5e5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 16px;
}

.item-details {
    flex: 1;
}

.item-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.item-qty {
    font-size: 12px;
    color: #888;
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.detail-item {
    background: #fff;
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #eee;
}

.detail-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Vertical Timeline */
.timeline-vertical {
    position: relative;
    padding-left: 24px;
}

.timeline-step {
    position: relative;
    padding-bottom: 16px;
    padding-left: 20px;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 0;
    width: 2px;
    background: #e5e5e5;
}

.timeline-step:last-child::before {
    display: none;
}

.timeline-step.done::before {
    background: #10b981;
}

.timeline-dot {
    position: absolute;
    left: -8px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: #888;
}

.timeline-step.done .timeline-dot {
    background: #10b981;
    color: #fff;
}

.timeline-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.timeline-step.pending .timeline-title {
    color: #888;
}

.timeline-time {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

/* Total Card */
.total-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: #fff;
    padding: 18px 20px;
    border-radius: 14px;
    margin-top: 8px;
}

.total-label {
    font-size: 13px;
    opacity: 0.8;
}

.total-value {
    font-size: 22px;
    font-weight: 800;
    color: #10b981;
}

/* Mobile - Full screen modal */
@media (max-width: 576px) {

    .order-tracker-modal .modal-content,
    .modal-content.modal-tracking,
    .modal-content.modal-error {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        transform: none;
    }

    .order-tracker-modal.active .modal-content {
        transform: none;
    }

    .modal-body-tracking {
        max-height: calc(100vh - 200px);
        overflow-y: auto;
    }
}

/* Hero Spacer - pushes content below absolute positioned hero */
.hero-spacer {
    height: 100vh;
    height: 100dvh;
}

@media (max-width: 992px) {
    .hero-spacer {
        height: auto;
        min-height: 100vh;
    }
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--fluent-black);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--fluent-black);
    border-radius: 2px;
}

/* About section has left-aligned h2 */
.about-content h2 {
    position: relative;
    display: inline-block;
}

.about-description {
    margin-bottom: 32px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--fluent-black);
    border-radius: 2px;
}

/* Catalogue header has different layout */
.catalogue-header .header-content h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.catalogue-header .header-content p {
    margin-top: 10px;
}

.catalogue-header .header-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--fluent-black);
    border-radius: 2px;
}

.section-header p {
    font-size: 18px;
    color: var(--fluent-gray-70);
}

/* ========================================
   CATALOGUE SECTION - Featured + Grid Hybrid
   ======================================== */
.catalogue-section {
    background: var(--fluent-gray-10);
    padding: 80px 0;
}

/* Header with View All button */
.catalogue-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    margin-bottom: 40px;
}

.catalogue-header .header-content {
    flex: 1;
}

.catalogue-header .header-content h2 {
    margin-bottom: 8px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--fluent-black);
    color: var(--fluent-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: var(--fluent-gray-90);
    transform: translateX(4px);
}

/* Hybrid Layout - Featured + Grid */
.catalogue-hybrid {
    display: flex;
    gap: 24px;
    min-height: 480px;
}

/* Featured Product (Left - 40%) */
.featured-product-wrapper {
    flex: 0 0 40%;
    max-width: 40%;
}

.featured-card {
    height: 100%;
    background: var(--fluent-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

.featured-card .card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .card-image img {
    transform: scale(1.05);
}

.featured-card .card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-card .card-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--fluent-gray-60);
    margin-bottom: 8px;
}

.featured-card .card-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--fluent-black);
    margin-bottom: 12px;
    line-height: 1.3;
}

.featured-card .card-description {
    font-size: 14px;
    color: var(--fluent-gray-70);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-card .card-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--fluent-success);
}

.featured-card .card-price.has-offer .original {
    font-size: 16px;
    color: var(--fluent-gray-60);
    text-decoration: line-through;
    font-weight: 400;
    margin-right: 12px;
}

.featured-card .featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

/* Product Grid (Right - 60%) */
.catalogue-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Grid Product Card */
.grid-card {
    background: var(--fluent-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.grid-card .card-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.grid-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.grid-card:hover .card-image img {
    transform: scale(1.08);
}

.grid-card .card-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.grid-card .card-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--fluent-gray-60);
    margin-bottom: 4px;
}

.grid-card .card-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--fluent-black);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.grid-card .card-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--fluent-success);
    margin-top: auto;
}

.grid-card .card-price .original {
    font-size: 13px;
    color: var(--fluent-gray-60);
    text-decoration: line-through;
    font-weight: 400;
    margin-right: 8px;
}

/* Badges */
.offer-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: white;
    padding: 6px 16px 6px 10px;
    font-size: 11px;
    font-weight: 700;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    z-index: 5;
}

.badge-low-stock {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 5;
}

.sold-out-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.sold-out-label {
    background: var(--fluent-white);
    color: var(--fluent-black);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

/* View Button Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 8;
}

.grid-card:hover .card-overlay,
.featured-card:hover .card-overlay {
    opacity: 1;
}

.view-btn {
    background: var(--fluent-white);
    color: var(--fluent-black);
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-btn:hover {
    background: var(--fluent-black);
    color: var(--fluent-white);
    transform: scale(1.05);
}

/* Featured Indicator Dots */
.featured-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.featured-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--fluent-gray-40);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.featured-dot.active {
    background: var(--fluent-black);
    width: 28px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .catalogue-hybrid {
        flex-direction: column;
    }

    .featured-product-wrapper {
        flex: none;
        max-width: 100%;
    }

    .featured-card .card-image {
        height: 250px;
    }

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

@media (max-width: 768px) {
    .catalogue-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
    }

    .catalogue-header .header-content {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .catalogue-grid {
        grid-template-columns: 1fr;
    }

    .featured-card .card-name {
        font-size: 20px;
    }

    .featured-card .card-price {
        font-size: 22px;
    }
}

/* Old carousel CSS removed - now using Featured + Grid Hybrid layout */

/* About Section */
.about-section {
    background: var(--fluent-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-description {
    font-size: 18px;
    color: var(--fluent-gray-70);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-content p {
    margin: 0;
}

/* Modern Feature Cards */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--fluent-black);
}

.feature-card:hover {
    background: #fff;
    border-color: #e0e0e0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #1a1a1a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.feature-content h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--fluent-black);
}

.feature-content p {
    font-size: 13px;
    color: var(--fluent-gray-60);
    margin: 0;
    line-height: 1.4;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* About responsive */
@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Team Section */
.team-section {
    background: var(--fluent-gray-10);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    background: var(--fluent-white);
    border-radius: var(--fluent-radius-large);
    padding: 30px;
    text-align: center;
    box-shadow: var(--fluent-shadow-4);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--fluent-shadow-16);
}

.team-member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--fluent-gray-20);
}

.team-member-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--fluent-black);
}

.team-member-role {
    font-size: 15px;
    color: var(--fluent-gray-70);
    margin-bottom: 16px;
}

.team-member-bio {
    font-size: 14px;
    color: var(--fluent-gray-70);
    line-height: 1.6;
}

.team-member-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--fluent-gray-20);
}

.team-member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--fluent-gray-10);
    color: var(--fluent-gray-70);
    text-decoration: none;
    transition: all 0.2s ease;
}

.team-member-social a:hover {
    background: var(--fluent-black);
    color: var(--fluent-white);
    transform: translateY(-2px);
}

/* Gallery Section */
.gallery-section {
    background: var(--fluent-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--fluent-radius-large);
    box-shadow: var(--fluent-shadow-4);
    transition: all 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--fluent-shadow-16);
}

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: var(--fluent-white);
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--fluent-gray-10);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: var(--fluent-white);
    border-radius: var(--fluent-radius-large);
    padding: 32px;
    box-shadow: var(--fluent-shadow-4);
    position: relative;
}

.testimonial-quote {
    font-size: 48px;
    color: var(--fluent-gray-30);
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--fluent-gray-80);
    margin: 30px 0 24px 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--fluent-black);
}

.testimonial-author-role {
    font-size: 14px;
    color: var(--fluent-gray-70);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--fluent-white);
    text-align: center;
    margin-bottom: 0;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-content a {
    text-decoration: none;
}

/* CTA Shop Now button uses accent color */
.cta-content .fluent-btn-primary {
    background: #1a1a1a;
    color: #fff;
    border: 2px solid transparent;
}

.cta-content .fluent-btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* Footer */
.landing-footer {
    background: #1a1a1a;
    color: var(--fluent-white);
    padding: 60px 0 30px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 40px;
    border-radius: 8px;
}

.footer-brand-name {
    font-size: 24px;
    font-weight: 700;
}

.footer-description {
    color: var(--fluent-gray-60);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--fluent-gray-60);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--fluent-white);
}

.footer-contact p {
    color: var(--fluent-gray-60);
    margin-bottom: 12px;
}

.footer-contact i {
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--fluent-gray-80);
    color: var(--fluent-gray-60);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.footer-bottom a {
    color: var(--fluent-white);
    text-decoration: none;
    font-weight: 600;
}

.copyright-notice {
    margin-top: 16px;
    font-size: 12px;
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .carousel-item {
        flex: 0 0 calc(20% - 16px);
        /* 5 items */
    }
}

@media (max-width: 1200px) {
    .carousel-item {
        flex: 0 0 calc(25% - 15px);
        /* 4 items */
    }
}

@media (max-width: 992px) {
    .landing-nav {
        top: 10px;
        left: 3%;
        right: 3%;
        width: 94%;
        padding: 12px 20px;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 3%;
        right: 3%;
        width: 94%;
        background: var(--fluent-white);
        border: 2px solid var(--fluent-black);
        border-radius: 12px;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .carousel-item {
        flex: 0 0 calc(33.333% - 14px);
        /* 3 items */
    }

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

    .section-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .carousel-wrapper {
        padding: 0 60px;
        /* Less padding on mobile */
    }

    .carousel-item {
        flex: 0 0 100%;
        /* 1 item on mobile */
        min-width: unset;
    }

    .carousel-control {
        width: 44px;
        height: 44px;
        font-size: 18px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .fluent-btn {
        width: 100%;
        max-width: 300px;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .carousel-wrapper {
        padding: 0 50px;
    }

    .carousel-item {
        flex: 0 0 100%;
        /* 1 item on small mobile */
    }

    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .carousel-prev {
        left: 2px;
    }

    .carousel-next {
        right: 2px;
    }

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

/* =============================================
   CATALOGUE TRANSITION ANIMATIONS
   Slide + Fade with Staggered Timing
============================================= */

/* Grid card wrapper for individual animation control */
.grid-card-wrapper {
    animation-fill-mode: both;
}

/* Entrance Animation - Slide Up + Fade In */
.catalogue-enter {
    animation: catalogueSlideIn 0.4s ease-out forwards;
}

@keyframes catalogueSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Exit Animation - Slide Left + Fade Out */
.catalogue-exit {
    animation: catalogueSlideOut 0.3s ease-in forwards;
}

@keyframes catalogueSlideOut {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-30px);
    }
}

/* Featured product specific transition smoothing */
#featuredProduct {
    transition: opacity 0.1s;
}

/* Grid container smoothing */
#catalogueGrid {
    min-height: 300px;
    /* Prevent layout shift during transitions */
}