/**
 * Homepage Design - Premium Professional B2B Design
 * 
 * Sophisticated, premium styling for all homepage sections.
 * Product cards use global.css styles.
 *
 * @package     RalphWhite_B2B
 * @subpackage  Assets
 * @since       2.0.0
 */

/* ==========================================================================
   Hero Section - Premium Enhanced
   ========================================================================== */

.homepage-hero {
    background: var(--bg-dark);
    min-height: 85vh;
    color: var(--color-white);
    display: flex;
    align-items: center;
    padding: 6rem 0 145px;
    position: relative;
    overflow: hidden;
}

/* Hero section for non-logged-in users - white background */
.homepage-hero-public {
    background: var(--bg-primary, #ffffff);
    color: var(--text-primary, #1a2433);
    min-height: auto;
    padding: 4rem 0;
}

.homepage-hero-public .homepage-title,
.homepage-hero-public .homepage-subtitle {
    color: var(--text-primary, #1a2433);
}

.homepage-hero-public .homepage-title .highlight {
    color: var(--color-accent-orange, #f58220);
}

.homepage-hero-public .hero-trust-badge {
    background: rgba(245, 130, 32, 0.1);
    color: var(--color-accent-orange, #f58220);
    border: 1px solid rgba(245, 130, 32, 0.2);
}

.homepage-hero-public .hero-feature-pill {
    background: rgba(245, 130, 32, 0.1);
    color: var(--text-primary, #1a2433);
    border: 1px solid rgba(245, 130, 32, 0.2);
}

.homepage-hero-public .hero-bottom-curve {
    display: none;
}

/* Hero with background image/video */
.homepage-hero-with-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--bg-dark); /* Fallback */
}

.homepage-hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.homepage-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

.homepage-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-bottom-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    line-height: 0;
}

.hero-curve-svg {
    width: 100%;
    height: auto;
    display: block;
}

.homepage-hero .container {
    max-width: 1400px;
}

.homepage-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.homepage-hero .container-fluid,
.homepage-hero .container,
.homepage-hero .row {
    position: relative;
    z-index: 3;
}

/* Hero Layout - Left Content + Right Stats (Bootstrap Grid) */
.homepage-hero .row {
    align-items: center;
}

.homepage-hero-left {
    padding-right: 3rem;
}

.homepage-hero-right {
    padding-left: 3rem;
}

.homepage-title {
    font-size: var(--heading-xl);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-white);
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem 0.5rem 0;
}

/* .homepage-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1rem;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 130, 32, 0.2) 0%, rgba(245, 130, 32, 0.1) 100%);
    border-radius: 12px 0 0 12px;
    z-index: -1;
    transform: skewX(-5deg);
} */

.homepage-title .highlight {
    color: var(--color-accent-orange);
    position: relative;
}

.homepage-subtitle {
    font-size: var(--text-base);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 600px;
}

.homepage-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 700px;
}

.homepage-cta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-homepage-login,
.btn-homepage-signup {
    padding: 1.125rem 3rem;
    font-weight: 700;
    font-size: 1.0625rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-homepage-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-homepage-login:hover::before {
    left: 100%;
}

.btn-homepage-login {
    background: transparent;
    color: var(--color-accent-orange, #f58220);
    border: 2px solid var(--color-white);
    backdrop-filter: blur(10px);
}

.btn-homepage-login:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-homepage-signup {
    background: var(--color-accent-orange);
    color: var(--color-white);
    border: 2px solid var(--color-accent-orange);
    position: relative;
}

.btn-homepage-signup::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-homepage-signup:hover::after {
    width: 300px;
    height: 300px;
}

.btn-homepage-signup:hover {
    background: var(--color-accent-orange-light);
    border-color: var(--color-accent-orange-light);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-homepage-signup svg {
    width: 20px;
    height: 20px;
}

/* Hero Statistics Grid - Right Column (2x2 Grid) */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.hero-stat-card {
    background: var(--bg-tertiary);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255 255 255 / 5%);
    border-radius: var(--btn-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: var(--text-sm);
    /* color: rgba(255, 255, 255, 0.9); */
    font-weight: 500;
    margin: 0;
}

/* Hero Catalog Cards - For logged-in users */
.hero-catalog-card {
    background: rgb(255 255 255 / 4%);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255 255 255 / 5%);
    border-radius: var(--btn-radius);
    padding: 0;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    overflow: hidden;
    position: relative;
}

.hero-catalog-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(245, 130, 32, 0.3);
}

.hero-catalog-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.hero-catalog-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.hero-catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.hero-catalog-content {
    padding: 1.5rem;
}

.hero-catalog-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.hero-catalog-view {
    font-size: var(--text-sm);
    color: var(--color-accent-orange);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.hero-catalog-card:hover .hero-catalog-view {
    text-decoration: underline;
}

/* Trust Badge */
.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-dark-secondary);
    border-radius: 9999px;
    color: var(--color-white);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-trust-badge svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--color-accent-orange);
}

/* Feature Pills */
.hero-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    color: var(--color-white);
    font-size: var(--text-sm);
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.hero-feature-pill:hover {
    background: rgba(245, 130, 32, 0.2);
    border-color: var(--color-accent-orange);
    transform: translateY(-2px);
}

.hero-feature-pill svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--color-accent-orange);
}

@media (max-width: 991px) {
    .homepage-hero-left,
    .homepage-hero-right {
        padding-left: 0;
        padding-right: 0;
    }
    
    .homepage-hero-left {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .homepage-hero {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .homepage-title {
        font-size: 2.25rem;
    }
    
    .homepage-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats-grid {
        /* grid-template-columns: 1fr; */
        gap: 1rem;
    }
    
    .hero-stat-card {
        padding: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .homepage-hero-actions {
        gap: 1.5rem;
    }
    
    .homepage-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-homepage-login,
    .btn-homepage-signup {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 2rem;
    }
}

/* ==========================================================================
   Logged-in User Hero Section - Light Background Design
   ========================================================================== */

.homepage-hero-logged-in {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f2f5 100%);
    color: var(--text-primary, #1a2433);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: visible;
}

.homepage-hero-logged-in::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(245, 130, 32, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 130, 32, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.homepage-hero-logged-in .container-fluid,
.homepage-hero-logged-in .container,
.homepage-hero-logged-in .row {
    position: relative;
    z-index: 2;
}

.homepage-hero-logged-in .homepage-content {
    background: #ffffff;
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.homepage-hero-logged-in .homepage-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-orange, #f58220) 0%, rgba(245, 130, 32, 0.5) 100%);
}

.homepage-hero-logged-in .homepage-title {
    color: var(--text-primary, #1a2433);
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
}

.homepage-hero-logged-in .homepage-title .highlight {
    color: var(--color-accent-orange, #f58220);
    position: relative;
}

.homepage-hero-logged-in .homepage-subtitle {
    color: var(--text-secondary, #64748b);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.homepage-hero-logged-in .homepage-hero-actions {
    gap: 2rem;
}

/* Search Bar - Light Theme */
.homepage-hero-logged-in .search-input-wrapper {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.homepage-hero-logged-in .search-input-wrapper:hover,
.homepage-hero-logged-in .search-input-wrapper:focus-within {
    border-color: var(--color-accent-orange, #f58220);
    box-shadow: 0 4px 16px rgba(245, 130, 32, 0.12);
    transform: translateY(-2px);
}

.homepage-hero-logged-in .search-icon {
    color: var(--color-accent-orange, #f58220);
    opacity: 1;
}

.homepage-hero-logged-in .search-field {
    color: var(--text-primary, #1a2433);
}

.homepage-hero-logged-in .search-field::placeholder {
    color: #94a3b8;
}

.homepage-hero-logged-in .search-submit-btn {
    background: var(--color-accent-orange, #f58220);
}

.homepage-hero-logged-in .search-submit-btn:hover {
    background: rgba(245, 130, 32, 0.9);
    transform: translateX(4px) scale(1.1);
}

/* Buttons - Light Theme */
.homepage-hero-logged-in .btn-homepage-login {
    background: #ffffff;
    color: var(--text-primary, #1a2433);
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.homepage-hero-logged-in .btn-homepage-login:hover {
    background: var(--text-primary, #1a2433);
    color: #ffffff;
    border-color: var(--text-primary, #1a2433);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.homepage-hero-logged-in .btn-homepage-signup {
    background: var(--color-accent-orange, #f58220);
    color: #ffffff;
    border-color: var(--color-accent-orange, #f58220);
    box-shadow: 0 4px 16px rgba(245, 130, 32, 0.3);
}

.homepage-hero-logged-in .btn-homepage-signup:hover {
    background: rgba(245, 130, 32, 0.9);
    border-color: rgba(245, 130, 32, 0.9);
    box-shadow: 0 6px 24px rgba(245, 130, 32, 0.4);
}

/* Stats Grid - Light Theme */
.homepage-hero-logged-in .hero-stats-grid {
    gap: 1.5rem;
}

.homepage-hero-logged-in .hero-stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 2.5rem 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.homepage-hero-logged-in .hero-stat-card:hover {
    background: #ffffff;
    border-color: var(--color-accent-orange, #f58220);
    box-shadow: 0 8px 24px rgba(245, 130, 32, 0.15);
    transform: translateY(-6px);
}

.homepage-hero-logged-in .hero-stat-number {
    color: var(--color-accent-orange, #f58220);
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
}

.homepage-hero-logged-in .hero-stat-label {
    color: var(--text-secondary, #64748b);
    font-size: 0.9375rem;
    font-weight: 600;
}

/* Catalog Cards - Light Theme */
.homepage-hero-logged-in .hero-catalog-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.homepage-hero-logged-in .hero-catalog-card:hover {
    background: #ffffff;
    border-color: var(--color-accent-orange, #f58220);
    box-shadow: 0 8px 24px rgba(245, 130, 32, 0.15);
    transform: translateY(-6px);
}

.homepage-hero-logged-in .hero-catalog-image {
    height: 180px;
    position: relative;
}

.homepage-hero-logged-in .hero-catalog-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    pointer-events: none;
}

.homepage-hero-logged-in .hero-catalog-content {
    padding: 2rem;
}

.homepage-hero-logged-in .hero-catalog-title {
    color: var(--text-primary, #1a2433);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.homepage-hero-logged-in .hero-catalog-view {
    color: var(--color-accent-orange, #f58220);
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.homepage-hero-logged-in .hero-catalog-view::after {
    content: '→';
    transition: transform 0.3s ease;
}

.homepage-hero-logged-in .hero-catalog-card:hover .hero-catalog-view::after {
    transform: translateX(4px);
}

/* Hero Bottom Curve - Light Theme */
.homepage-hero-logged-in .hero-bottom-curve {
    display: none;
}

/* Responsive adjustments for logged-in light theme */
@media (max-width: 991px) {
    .homepage-hero-logged-in .homepage-content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .homepage-hero-logged-in {
        padding: 3rem 0 2rem;
    }
    
    .homepage-hero-logged-in .homepage-content {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .homepage-hero-logged-in .homepage-title {
        font-size: 2rem;
    }
    
    .homepage-hero-logged-in .homepage-subtitle {
        font-size: 1rem;
    }
    
    .homepage-hero-logged-in .hero-stat-card {
        padding: 2rem 1.5rem;
    }
    
    .homepage-hero-logged-in .hero-stat-number {
        font-size: 2.25rem;
    }
    
    .homepage-hero-logged-in .hero-catalog-image {
        height: 150px;
    }
    
    .homepage-hero-logged-in .hero-catalog-content {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   Member Hero Section - Creative Modern Design
   ========================================================================== */

.homepage-hero-member {
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    /* overflow: hidden; */
}

.homepage-hero-member::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 130, 32, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.homepage-hero-member::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 130, 32, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.homepage-hero-member .container-fluid,
.homepage-hero-member .container,
.homepage-hero-member .row {
    position: relative;
    z-index: 1;
}

.homepage-hero-member .col-lg-7 {
    overflow: visible;
}

/* Content Card - Left Column */
.hero-member-content-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: visible;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-member-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 12px;
    right: 12px;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--color-accent-orange, #f58220) 0%, 
        rgba(245, 130, 32, 0.6) 50%,
        var(--color-accent-orange, #f58220) 100%);
    border-radius: 28px 28px 0 0;
}

.hero-member-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(245, 130, 32, 0.1);
    border: 1px solid rgba(245, 130, 32, 0.2);
    border-radius: 50px;
    color: var(--color-accent-orange, #f58220);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-member-badge svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.hero-member-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-primary, #1a2433);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-member-title .highlight {
    color: var(--color-accent-orange, #f58220);
    position: relative;
    display: inline-block;
}

.hero-member-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(245, 130, 32, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.hero-member-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary, #64748b);
    margin-bottom: 1.75rem;
    font-weight: 400;
}

/* Enhanced Search Bar */
.hero-member-search-wrapper {
    margin-bottom: 1.5rem;
}

.hero-member-search-input-wrapper {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-member-search-input-wrapper:hover,
.hero-member-search-input-wrapper:focus-within {
    border-color: var(--color-accent-orange, #f58220);
    box-shadow: 0 6px 20px rgba(245, 130, 32, 0.15);
    transform: translateY(-2px);
}

.hero-member-search-icon {
    color: var(--color-accent-orange, #f58220);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.hero-member-search-field {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-size: 0.9375rem;
    color: var(--text-primary, #1a2433);
    font-weight: 500;
}

.hero-member-search-field::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.hero-member-search-submit {
    background: var(--color-accent-orange, #f58220);
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(245, 130, 32, 0.3);
}

.hero-member-search-submit:hover {
    background: rgba(245, 130, 32, 0.9);
    transform: translateX(4px) scale(1.05);
    box-shadow: 0 4px 12px rgba(245, 130, 32, 0.4);
}

.hero-member-search-submit svg {
    width: 20px;
    height: 20px;
}

/* Action Buttons */
.hero-member-actions {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
    margin-top: 0;
}

.hero-member-action-btn {
    flex: 1;
    min-width: 160px;
    padding: 0.9375rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.hero-member-action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-member-action-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-member-action-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hero-member-action-btn:hover svg {
    transform: translateX(4px);
}

.hero-member-action-primary {
    background: var(--color-accent-orange, #f58220);
    color: #ffffff;
    border: 2px solid var(--color-accent-orange, #f58220);
}

.hero-member-action-primary:hover {
    background: rgba(245, 130, 32, 0.9);
    border-color: rgba(245, 130, 32, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(245, 130, 32, 0.35);
}

.hero-member-action-secondary {
    background: #ffffff;
    color: var(--text-primary, #1a2433);
    border: 2px solid #e2e8f0;
}

.hero-member-action-secondary:hover {
    background: var(--text-primary, #1a2433);
    color: #ffffff;
    border-color: var(--text-primary, #1a2433);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Catalogs List - Right Column */
.hero-member-catalogs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

/* Catalog List Items - Horizontal Layout (Image Left, Content Right) */
.hero-member-catalog-list-item {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: flex-start;
}

.hero-member-catalog-list-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-accent-orange, #f58220);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.hero-member-catalog-list-item:hover::before {
    transform: scaleX(1);
}

.hero-member-catalog-list-item:hover {
    border-color: var(--color-accent-orange, #f58220);
    box-shadow: 
        0 8px 24px rgba(245, 130, 32, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.hero-member-catalog-list-image {
    width: 180px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-member-catalog-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-member-catalog-list-item:hover .hero-member-catalog-list-image img {
    transform: scale(1.05);
}

.hero-member-catalog-list-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}

.hero-member-catalog-list-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary, #1a2433);
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.hero-member-catalog-list-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(245, 130, 32, 0.1);
    border: 1px solid rgba(245, 130, 32, 0.2);
    border-radius: 50px;
    color: var(--color-accent-orange, #f58220);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
    margin-bottom: 0.5rem;
}

.hero-member-catalog-list-badge svg {
    width: 14px;
    height: 14px;
}

.hero-member-catalog-list-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-member-catalog-list-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 5px 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.hero-member-catalog-list-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hero-member-catalog-list-btn-view {
    background: var(--color-accent-orange, #f58220);
    color: #ffffff;
    border-color: var(--color-accent-orange, #f58220);
}

.hero-member-catalog-list-btn-view:hover {
    background: var(--color-accent-orange-light, #ff9538);
    border-color: var(--color-accent-orange-light, #ff9538);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 130, 32, 0.3);
}

.hero-member-catalog-list-btn-view:hover svg {
    transform: translateX(3px);
}

.hero-member-catalog-list-btn-download {
    background: #ffffff;
    color: var(--text-primary, #1a2433);
    border-color: #e2e8f0;
}

.hero-member-catalog-list-btn-download:hover {
    background: var(--bg-light, #f8fafc);
    border-color: var(--color-accent-orange, #f58220);
    color: var(--color-accent-orange, #f58220);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-member-catalog-list-btn-download:hover svg {
    transform: translateY(3px);
}

.hero-member-catalog-list-btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.hero-member-catalog-list-btn-disabled:hover {
    background: #ffffff;
    border-color: #e2e8f0;
    color: var(--text-primary, #1a2433);
    transform: none;
    box-shadow: none;
}

.hero-member-catalog-list-btn-disabled:hover svg {
    transform: none;
}

.hero-member-no-catalogs {
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px dashed #e2e8f0;
    color: var(--text-secondary, #64748b);
}

.hero-member-no-catalogs svg {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.hero-member-no-catalogs p {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 500;
}

/* Stat Cards */
.hero-member-stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-member-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-orange, #f58220) 0%, rgba(245, 130, 32, 0.5) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.hero-member-stat-card:hover::before {
    transform: scaleX(1);
}

.hero-member-stat-card:hover {
    border-color: var(--color-accent-orange, #f58220);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(245, 130, 32, 0.2);
}

.hero-member-stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(245, 130, 32, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-accent-orange, #f58220);
    transition: all 0.3s ease;
}

.hero-member-stat-card:hover .hero-member-stat-icon {
    background: var(--color-accent-orange, #f58220);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.hero-member-stat-icon svg {
    width: 32px;
    height: 32px;
}

.hero-member-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent-orange, #f58220);
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.hero-member-stat-label {
    font-size: 0.9375rem;
    color: var(--text-secondary, #64748b);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hero-member-title {
        font-size: 2.5rem;
    }
    
    .hero-member-catalogs-grid {
        gap: 1.25rem;
    }
}

@media (max-width: 991px) {
    .homepage-hero-member {
        padding: 4rem 0 3rem;
    }
    
    .hero-member-content-card {
        padding: 2rem;
        margin-bottom: 2rem;
        overflow: visible;
    }
    
    .hero-member-title {
        font-size: 2rem;
    }
    
    .hero-member-description {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-member-search-wrapper {
        margin-bottom: 1.25rem;
    }
    
    .hero-member-catalog-list-item {
        padding: 1.25rem;
    }
    
    .hero-member-catalog-list-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .homepage-hero-member {
        padding: 3rem 0 2rem;
    }
    
    .hero-member-content-card {
        padding: 2rem 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
        background: none;
        overflow: visible;
    }
    
    .hero-member-badge {
        margin-bottom: 1rem;
        font-size: 0.75rem;
        padding: 0.4375rem 0.875rem;
    }
    
    .hero-member-title {
        font-size: 1.75rem;
        margin-bottom: 0.875rem;
    }
    
    .hero-member-description {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-member-search-wrapper {
        margin-bottom: 1.25rem;
    }
    
    .hero-member-search-input-wrapper {
        padding: 0.875rem 1rem;
        border-radius: 12px;
    }
    
    .hero-member-search-field {
        font-size: 0.875rem;
    }
    
    .hero-member-search-icon {
        width: 18px;
        height: 18px;
    }
    
    .hero-member-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-member-action-btn {
        width: 100%;
        min-width: auto;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .hero-member-stat-card {
        padding: 2rem 1.5rem;
    }
    
    .hero-member-stat-number {
        font-size: 2.5rem;
    }
    
    .hero-member-catalog-list-item {
        flex-direction: row;
        padding: 1.25rem;
        gap: 1.25rem;
    }
    
    .hero-member-catalog-list-image {
        width: 140px;
        height: 180px;
    }
    
    .hero-member-catalog-list-title {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }
    
    .hero-member-catalog-list-badge {
        font-size: 10px;
        padding: 0.3125rem 0.625rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-member-catalog-list-actions {
        gap: 0.625rem;
    }
    
    .hero-member-catalog-list-btn {
        padding: 0.75rem 8px;
        font-size: 12px;
    }
}

/* ==========================================================================
   Trust Banner - Creative Ribbon Style
   ========================================================================== */

.homepage-trust-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.homepage-trust-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.03) 20px,
            rgba(255, 255, 255, 0.03) 40px
        );
    pointer-events: none;
}

.trust-banner-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .trust-banner-grid {
        gap: 4rem 5rem;
    }
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
    background: transparent;
    border: none;
    transition: all var(--transition-base);
}

.trust-badge:hover {
    transform: translateY(-3px) scale(1.05);
}

.trust-badge svg {
    color: var(--color-accent-gold);
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 4px 8px rgba(236, 167, 44, 0.3));
    transition: all var(--transition-base);
}

.trust-badge:hover svg {
    transform: rotate(10deg) scale(1.1);
    color: var(--color-white);
}

.trust-badge-content {
    display: flex;
    flex-direction: column;
}

.trust-badge-content strong {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.trust-badge-content span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 767px) {
    .trust-banner-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .trust-badge {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Search Bar - Premium Enhanced
   ========================================================================== */

.homepage-search-wrapper {
    width: 100%;
    position: relative;
    z-index: 1030;
    overflow: visible;
}

.search-input-wrapper {
    background: #232d3b;
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgb(255 255 255 / 5%);
    border-radius: 1rem;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    padding: 1.125rem 1.5rem;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-input-wrapper:hover,
.search-input-wrapper:focus-within {
    /* border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); */
    transform: translateY(-2px);
}

.search-icon {
    color: var(--color-accent-orange);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    opacity: 0.7;
}

.search-field {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-size: 1.0625rem;
    color: var(--color-white);
    font-weight: 500;
}

.search-field::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.search-submit-btn {
    background:var(--color-accent-orange);
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    border-radius: 0.5rem;
}

.search-submit-btn:hover {
    background: rgba(68, 53, 91, 0.1);
    color: var(--color-accent-orange);
    transform: translateX(4px) scale(1.1);
}

/* ==========================================================================
   Product Categories Section
   ========================================================================== */

.homepage-product-categories {
    padding: 6rem 0;
    background: var(--bg-tertiary);
}

.product-categories-banner {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(245, 130, 32, 0.1);
    color: var(--color-accent-orange);
    border-radius: 9999px;
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.homepage-product-categories .section-title {
    margin-bottom: 1rem;
}

.homepage-product-categories .section-subtitle {
    margin-bottom: 3rem;
}

.product-category-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--btn-radius);
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
    position: relative;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.product-category-card:hover {
    border-color: var(--color-accent-orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    text-decoration: none;
    color: inherit;
}

.product-category-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-orange);
}

.product-category-icon img,
.product-category-icon .custom-category-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.product-category-icon img[src$=".svg"],
.product-category-icon .custom-category-icon[src$=".svg"] {
    width: 48px;
    height: 48px;
    max-width: 48px;
    max-height: 48px;
}

.product-category-icon svg {
    width: 48px;
    height: 48px;
}

.product-category-content {
    flex: 1;
}

.product-category-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.product-category-content p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-category-count {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-accent-orange);
    margin-top: auto;
}

.product-category-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--text-muted);
    transition: all var(--transition-base);
}

.product-category-card:hover .product-category-arrow {
    color: var(--color-accent-orange);
    transform: translateX(4px);
}

.product-category-arrow svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Product Categories Section
   ========================================================================== */

.homepage-product-categories {
    padding: 6rem 0;
    background: var(--bg-tertiary);
}

.product-categories-banner {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(245, 130, 32, 0.1);
    color: var(--color-accent-orange);
    border-radius: 9999px;
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.homepage-product-categories .section-title {
    margin-bottom: 1rem;
}

.homepage-product-categories .section-subtitle {
    margin-bottom: 3rem;
}

.product-category-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--btn-radius);
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
    position: relative;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.product-category-card:hover {
    border-color: var(--color-accent-orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    text-decoration: none;
    color: inherit;
}

.product-category-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-orange);
}

.product-category-icon img,
.product-category-icon .custom-category-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.product-category-icon img[src$=".svg"],
.product-category-icon .custom-category-icon[src$=".svg"] {
    width: 48px;
    height: 48px;
    max-width: 48px;
    max-height: 48px;
}

.product-category-icon svg {
    width: 48px;
    height: 48px;
}

.product-category-content {
    flex: 1;
}

.product-category-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.product-category-content p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-category-count {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-accent-orange);
    margin-top: auto;
}

.product-category-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--text-muted);
    transition: all var(--transition-base);
}

.product-category-card:hover .product-category-arrow {
    color: var(--color-accent-orange);
    transform: translateX(4px);
}

.product-category-arrow svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 991px) {
    .homepage-product-categories {
        padding: 4rem 0;
    }
}

/* ==========================================================================
   Features Section - Premium Enhanced
   ========================================================================== */

.homepage-features {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.homepage-features::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(68, 53, 91, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.homepage-features::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -80px;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(238, 86, 34, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Features Section - Bootstrap Grid */
.homepage-features .row {
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--btn-radius);
    padding: 2.5rem 2rem;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent-orange) 100%);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent-orange);
    transform: translateY(-4px);
}

.feature-visual {
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 3rem;
    line-height: 1;
    display: block;
    transition: transform var(--transition-base);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: var(--heading-sm);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    flex: 1;
    font-size: var(--text-base);
}

@media (max-width: 768px) {
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   Industry Focus Section - Premium Enhanced
   ========================================================================== */

.homepage-industry-focus {
    padding: 6rem 0;
    background: 
        linear-gradient(135deg, rgba(68, 53, 91, 0.02) 0%, transparent 50%),
        linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.homepage-industry-focus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-color-light) 50%, transparent 100%);
}

.homepage-industry-focus::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-color-light) 50%, transparent 100%);
}

.industry-focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.industry-focus-card {
    background: var(--bg-primary);
    border: 2px solid var(--border-color-light);
    border-radius: 1.25rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-slow);
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.industry-focus-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent-orange) 100%);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.industry-focus-card:hover {
    box-shadow: 0 12px 40px rgba(68, 53, 91, 0.15);
    border-color: var(--color-primary);
    transform: translateY(-6px);
    text-decoration: none;
    color: inherit;
}

.industry-focus-card:hover::after {
    transform: scaleX(1);
}

.industry-focus-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 65%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.industry-focus-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.industry-focus-card:hover .industry-focus-image {
    transform: scale(1.15);
}

.industry-focus-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-muted);
    opacity: 0.4;
}

.industry-focus-content {
    padding: 1.5rem 0 0;
    background: transparent;
}

.industry-focus-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.industry-focus-count {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}

@media (max-width: 991px) {
    .industry-focus-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .industry-focus-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================================================
   Categories Section - E-commerce Focused
   ========================================================================== */

.homepage-categories {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
}

.homepage-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(68, 53, 91, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(238, 86, 34, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.category-card {
    background: var(--bg-primary);
    border-radius: 1rem;
    overflow: hidden;
    transition: all var(--transition-slow);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(68, 53, 91, 0.7) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 2;
}

.category-card:hover {
    box-shadow: 0 16px 48px rgba(68, 53, 91, 0.2);
    transform: translateY(-8px) scale(1.02);
    text-decoration: none;
    color: inherit;
}

.category-card:hover::before {
    opacity: 1;
}

.category-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 80%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.category-card:hover .category-image {
    transform: scale(1.15);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-muted);
    opacity: 0.4;
}

.category-content {
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 1;
    background: var(--bg-primary);
}

.category-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.category-count {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}

.btn-view-all-categories {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(68, 53, 91, 0.2);
    border: none;
}

.btn-view-all-categories:hover {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(68, 53, 91, 0.3);
    text-decoration: none;
}

.btn-view-all-categories svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.btn-view-all-categories:hover svg {
    transform: translateX(6px);
}

@media (max-width: 1199px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 2rem;
    }
}

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

/* ==========================================================================
   Quick Access Section - Advanced Creative Design
   ========================================================================== */

.homepage-quick-access {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.homepage-quick-access::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(68, 53, 91, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.homepage-quick-access::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 167, 44, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .quick-access-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

.quick-access-card {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border: 2px solid var(--border-color-light);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 20px rgba(68, 53, 91, 0.08);
}

.quick-access-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
}

.quick-access-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 1;
}

.quick-access-card:hover::before {
    opacity: 1;
}

.quick-access-card:hover::after {
    width: 300px;
    height: 300px;
}

.quick-access-card:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-12px) scale(1.03);
    border-color: var(--color-primary);
    box-shadow: 0 20px 50px rgba(68, 53, 91, 0.25);
}

.quick-access-icon {
    width: 80px;
    height: 80px;
    color: var(--color-primary);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--border-color-light);
    box-shadow: 0 6px 20px rgba(68, 53, 91, 0.12);
}

.quick-access-card:hover .quick-access-icon {
    transform: scale(1.15) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    color: var(--color-white);
}

.quick-access-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
    transition: all 0.5s;
}

.quick-access-card:hover .quick-access-title {
    color: var(--color-white);
    transform: translateY(-3px);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.quick-access-description {
    display: none;
}

@media (max-width: 767px) {
    .homepage-quick-access {
        padding: 4rem 0;
    }
    
    .quick-access-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    .quick-access-card {
        padding: 2rem 1.5rem;
    }
    
    .quick-access-icon {
        width: 64px;
        height: 64px;
    }
    
    .quick-access-title {
        font-size: 1rem;
    }
}

/* ==========================================================================
   B2B Benefits Section - Grid Cards
   ========================================================================== */

.homepage-b2b-benefits {
    padding: 5rem 0;
    background: var(--bg-primary);
}

/* B2B Benefits Section - Bootstrap Grid */
.b2b-benefit-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--btn-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.b2b-benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-orange) 0%, var(--color-accent-gold) 100%);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.b2b-benefit-item:hover {
    border-color: var(--color-accent-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.b2b-benefit-item:hover::before {
    transform: scaleX(1);
}

.b2b-benefit-icon {
    width: 48px;
    height: 48px;
    color: var(--color-accent-orange);
    transition: all var(--transition-base);
    margin-bottom: 1.25rem;
}

.b2b-benefit-item:hover .b2b-benefit-icon {
    transform: scale(1.1);
    color: var(--color-accent-orange-light);
}

.b2b-benefit-title {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.b2b-benefit-text {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Stats Section - Premium Enhanced
   ========================================================================== */

.homepage-stats {
    padding: 6rem 0;
    background: var(--bg-dark);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.homepage-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    opacity: 0.6;
}

/* Stats Section - Bootstrap Grid */
.homepage-stats .row {
    position: relative;
    z-index: 1;
}

.stat-card {
    background: var(--color-dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--btn-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    color: var(--color-accent-orange);
    transition: all var(--transition-base);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent-orange);
    margin-bottom: 0.75rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--color-dark-text-muted);
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ==========================================================================
   How It Works Section - Creative Timeline Style
   ========================================================================== */

.homepage-how-it-works {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.step-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding: 0;
    background: transparent;
    border: none;
}

.step-item:last-child {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .step-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 2.5rem;
        margin-bottom: 4rem;
    }
    
    .step-item:nth-child(odd) {
        flex-direction: row-reverse;
    }
    
    .step-item:nth-child(odd) .step-content {
        text-align: right;
    }
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: var(--color-accent-orange);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--bg-primary);
    position: relative;
    z-index: 2;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.step-item:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

@media (min-width: 992px) {
    .step-number {
        margin: 0;
        position: relative;
        flex-shrink: 0;
    }
    
    .step-item:hover .step-number {
        transform: scale(1.1) rotate(5deg);
    }
}

.step-item .step-icon {
    display: none;
}

.step-content-wrapper {
    flex: 1;
}

.step-item .step-title {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.step-item .step-description {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .step-item .step-number {
        margin-right: 2rem;
        flex-shrink: 0;
    }
    
    .step-item:nth-child(even) .step-number {
        margin-right: 0;
        margin-left: 2rem;
        order: 2;
    }
    
    .step-content-wrapper {
        order: 1;
    }
    
    .step-item:nth-child(even) .step-content-wrapper {
        order: 0;
        text-align: right;
    }
}

.step-item:hover {
    transform: translateY(-2px);
}

.step-item:hover .step-number {
    transform: scale(1.05);
}

.step-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    transition: all var(--transition-base);
    filter: drop-shadow(0 4px 8px rgba(68, 53, 91, 0.2));
}

.step-item:hover .step-icon {
    transform: scale(1.15) rotate(-5deg);
    color: var(--color-accent-orange);
}

.step-title {
    font-size: var(--heading-sm);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    margin-top: 0;
}

.step-description {
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: var(--btn-padding);
    padding: 1rem 2.5rem;
    background: var(--color-accent-orange);
    color: var(--color-white);
    border-radius: var(--btn-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-base);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    border: none;
    margin-top: 3rem;
}

.btn-get-started:hover {
    background: var(--color-accent-orange-light);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(68, 53, 91, 0.3);
    text-decoration: none;
}

.btn-get-started svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.btn-get-started:hover svg {
    transform: translateX(6px);
}

@media (max-width: 991px) {
    .step-content {
        border-left: none;
        border-top: 4px solid var(--color-primary);
        padding: 2rem;
    }
    
    .step-item:hover .step-content {
        transform: translateY(-4px);
        border-top-color: var(--color-accent-orange);
    }
}

/* ==========================================================================
   Featured Products Section - E-commerce Focused
   ========================================================================== */

.homepage-featured-products {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.homepage-featured-products::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(68, 53, 91, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.homepage-featured-products::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(238, 86, 34, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.homepage-featured-products .container {
    position: relative;
    z-index: 1;
}

.featured-products-banner {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(245, 130, 32, 0.1);
    color: var(--color-accent-orange);
    border-radius: 9999px;
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.homepage-featured-products .section-title {
    margin-bottom: 1rem;
}

/* .homepage-featured-products .section-subtitle {
    margin-bottom: 3rem;
} */

.homepage-featured-products .row {
    margin-top: 0;
}

.homepage-featured-products .row > div {
    margin-bottom: 0;
}

.btn-view-all-products {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--color-accent-orange);
    color: var(--color-white);
    border-radius: var(--btn-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-base);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    margin-top: 2rem;
}

.btn-view-all-products:hover {
    background: var(--color-accent-orange-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--color-white);
}

.homepage-recent-orders {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.recent-orders-table-wrapper {
    background: var(--bg-primary);
    border: 2px solid var(--border-color-light);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    max-width: 1400px;
    margin: 0 auto;
}

.recent-orders-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.recent-orders-table thead {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border-bottom: 2px solid var(--border-color);
}

.recent-orders-table th {
    padding: 1.5rem 2rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
}

.recent-orders-table th.text-end {
    text-align: right;
}

.recent-orders-table tbody tr {
    border-bottom: 1px solid var(--border-color-light);
    transition: all var(--transition-base);
}

.recent-orders-table tbody tr:last-child {
    border-bottom: none;
}

.recent-orders-table tbody tr:hover {
    background: var(--bg-secondary);
}

.recent-orders-table td {
    padding: 1.5rem 2rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
}

.recent-orders-table td.text-end {
    text-align: right;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.125rem;
}

.order-number-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.0625rem;
    transition: all var(--transition-base);
}

.order-number-link:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.btn-view-all-products,
.btn-view-all-orders {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(68, 53, 91, 0.2);
}

.btn-view-all-products:hover,
.btn-view-all-orders:hover {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(68, 53, 91, 0.3);
    text-decoration: none;
}

.btn-view-all-products svg,
.btn-view-all-orders svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.btn-view-all-products:hover svg,
.btn-view-all-orders:hover svg {
    transform: translateX(6px);
}

@media (max-width: 768px) {
    .homepage-features,
    .homepage-industry-focus,
    .homepage-categories,
    .homepage-featured-products,
    .homepage-quick-access,
    .homepage-b2b-benefits,
    .homepage-stats,
    .homepage-how-it-works,
    .homepage-recent-orders {
        padding: 4rem 0;
    }
    
    .recent-orders-table-wrapper {
        overflow-x: auto;
        border-radius: 1rem;
    }
    
    .recent-orders-table {
        min-width: 600px;
    }
    
    .recent-orders-table th,
    .recent-orders-table td {
        padding: 1.25rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* ==========================================================================
   Status Badges - Premium
   ========================================================================== */

.order-status-badge {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.order-status-processing {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.15) 100%);
    color: var(--color-info);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.order-status-on-hold {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.15) 100%);
    color: var(--color-warning);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.order-status-completed {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.15) 100%);
    color: var(--color-success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.order-status-pending {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.2) 0%, rgba(107, 114, 128, 0.15) 100%);
    color: var(--text-muted);
    border: 1px solid rgba(107, 114, 128, 0.3);
}

/* ==========================================================================
   Why Us Section
   ========================================================================== */

.homepage-why-us {
    padding: 6rem 0;
    background: var(--bg-tertiary);
}

.why-us-banner {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(245, 130, 32, 0.1);
    color: var(--color-accent-orange);
    border-radius: 9999px;
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.homepage-why-us .section-title {
    margin-bottom: 1rem;
}

.homepage-why-us .section-title::after {
    left: 0;
    transform: none;
}

.homepage-why-us .section-subtitle {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    margin-bottom: 2.5rem;
}

.why-us-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.why-us-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-primary);
    border: 2px solid var(--color-accent-orange);
    border-radius: var(--btn-radius);
    color: var(--text-primary);
    font-size: var(--text-sm);
    font-weight: 600;
}

.why-us-badge svg {
    color: var(--color-accent-orange);
    width: 20px;
    height: 20px;
}

.why-us-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.why-us-feature-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--btn-radius);
    padding: 2rem;
    transition: all var(--transition-base);
}

.why-us-feature-card:hover {
    border-color: var(--color-accent-orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.why-us-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(245, 130, 32, 0.1);
    border-radius: var(--btn-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-orange);
    margin-bottom: 1.25rem;
}

.why-us-feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.why-us-feature-card p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .why-us-features-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .why-us-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.homepage-testimonials {
    padding: 6rem 0;
    background: var(--bg-dark);
    color: var(--color-white);
}

.homepage-testimonials .section-title {
    color: var(--color-white);
}

.homepage-testimonials .section-title::after {
    background: linear-gradient(90deg, var(--color-accent-orange) 0%, rgba(245, 130, 32, 0.5) 100%);
}

.homepage-testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--btn-radius);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-accent-orange);
}

.testimonial-text {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-orange);
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.homepage-contact {
    padding: 6rem 0;
    background: var(--bg-tertiary);
}

.homepage-contact .section-title {
    text-align: left;
    margin-bottom: 2rem;
    margin-top: 0;
    font-size: 2rem;
}

.homepage-contact .section-title::after {
    left: 0;
    transform: none;
}

.homepage-contact .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-form {
    margin-top: 0;
    background: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

.contact-form .form-control {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all var(--transition-base);
    width: 100%;
}

.contact-form .form-control::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.contact-form .form-control:focus {
    border-color: var(--color-accent-orange);
    box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.1);
    outline: none;
    background: #ffffff;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-contact-submit {
    background: var(--color-accent-orange);
    color: var(--color-white);
    border: none;
    border-radius: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
    box-shadow: 0 2px 4px rgba(245, 130, 32, 0.2);
    margin-top: 0.5rem;
    width: 100%;
}

.btn-contact-submit:hover {
    background: #e0731a;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(245, 130, 32, 0.3);
    color: var(--color-white);
}

.btn-contact-submit svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   CAPTCHA Styles (matching contact page)
   ========================================================================== */

.captcha-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.captcha-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    flex-wrap: wrap;
}

.captcha-question {
    color: var(--text-secondary);
}

.captcha-number-1,
.captcha-number-2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    background: var(--color-accent-orange);
    color: #ffffff;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 2px 4px rgba(245, 130, 32, 0.2);
}

.captcha-operator,
.captcha-equals {
    color: var(--text-primary);
    font-weight: 700;
}

.captcha-question-mark {
    color: var(--color-accent-orange);
    font-weight: 700;
}

.captcha-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.captcha-input-wrapper .captcha-input {
    flex: 1;
    max-width: 200px;
}

.captcha-refresh {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.captcha-refresh:hover {
    background: var(--color-accent-orange);
    border-color: var(--color-accent-orange);
    color: #ffffff;
    transform: rotate(180deg);
}

.captcha-refresh svg {
    width: 18px;
    height: 18px;
}

.form-text {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-top: 0.375rem;
}

/* ==========================================================================
   Form Messages (Success/Error)
   ========================================================================== */

.contact-form-messages {
    margin-bottom: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    border-left: 4px solid;
    display: none;
    font-size: 0.875rem;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-form-messages.contact-message-success {
    background: #f0fdf4;
    border-left-color: #10b981;
    color: #065f46;
    display: block !important;
}

.contact-form-messages.contact-message-success strong {
    color: #065f46;
    font-weight: 600;
}

.contact-form-messages.contact-message-error {
    background: #fef2f2;
    border-left-color: #ef4444;
    color: #991b1b;
    display: block !important;
}

.contact-form-messages.contact-message-error strong {
    color: #991b1b;
    font-weight: 600;
}

/* ==========================================================================
   Form Fields
   ========================================================================== */

.contact-form .form-row {
    margin-bottom: 0;
}

/* Two-column form layout */
.contact-form .row {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    margin-bottom: 0;
}

.contact-form .row > [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.contact-form .row .form-row {
    margin-bottom: 1.25rem;
}

.contact-form .row:last-child .form-row:last-child {
    margin-bottom: 1.25rem;
}

.contact-form .form-label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.4;
}

.contact-form .form-label .required {
    color: #ef4444;
    margin-left: 0.25rem;
}

.contact-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    color: var(--text-primary);
    box-sizing: border-box;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--color-accent-orange);
    box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.1);
    background: #ffffff;
}

.contact-form textarea.form-control {
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
}

.contact-form .form-row-submit {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form .form-row-submit .contact-form-messages {
    margin-bottom: 0;
    margin-top: 0;
}

.contact-banner {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(245, 130, 32, 0.1);
    color: var(--color-accent-orange);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: none;
    letter-spacing: 0;
}

.contact-info {
    padding-left: 3rem;
}

.contact-info h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.contact-info > p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: all var(--transition-base);
}

.contact-detail-card:hover {
    border-color: var(--color-accent-orange);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(245, 130, 32, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-orange);
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 24px;
    height: 24px;
}

.contact-detail-content {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    flex: 1;
}

.contact-detail-content strong {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.contact-detail-content span {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .contact-info {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .why-us-visual {
        min-height: 300px;
        margin-top: 3rem;
    }
}
