/* Write your css codes here */

/* SJM Logo Color Scheme - Updated to match logo exactly */
:root {
    --base-h: 220;
    --base-s: 85%;
    --base-l: 25%;
    --base: 220 85% 25%;
    --base-two-h: 355;
    --base-two-s: 85%; 
    --base-two-l: 55%;
    --base-two: 355 85% 55%;
    
    /* Clean white backgrounds */
    --body-background: 0 0% 99%;
    --section-bg: 0 0% 100%;
    --border-color: 0 0% 90%;
    
    /* Logo-based text colors */
    --heading-color: 220 85% 25%;
    --body-color: 220 40% 35%;
}

/* Banner Section Layout - Make carousel wider */
.banner-section .row {
    align-items: center;
}

.banner-section .col-lg-6:first-child {
    flex: 0 0 40%;
    max-width: 40%;
}

.banner-section .col-lg-6:last-child {
    flex: 0 0 60%;
    max-width: 60%;
}

/* Override any cached colors with SJM logo colors */
.btn--base {
    background-color: hsl(220, 85%, 25%) !important;
}

.btn--base:hover {
    background-color: hsl(355, 85%, 55%) !important;
}

/* SJM Logo-based heading colors */
h1, h2, h3, h4, h5, h6 {
    color: hsl(220, 85%, 25%) !important;
}

/* Navigation menu with logo colors */
.main-menu__menu-link {
    color: hsl(220, 85%, 25%) !important;
    font-weight: 500;
}

.main-menu__menu-link:hover,
.main-menu__menu-link.active {
    color: hsl(355, 85%, 55%) !important;
}

/* Buttons with logo colors */
.btn-coral {
    background-color: hsl(355, 85%, 55%) !important;
    border-color: hsl(355, 85%, 55%) !important;
    color: white !important;
}

.btn-navy {
    background-color: hsl(220, 85%, 25%) !important;
    border-color: hsl(220, 85%, 25%) !important;
    color: white !important;
}

.btn-cyan {
    background-color: hsl(190, 90%, 55%) !important;
    border-color: hsl(190, 90%, 55%) !important;
    color: white !important;
}

/* Section titles with logo colors */
.section-heading__title {
    color: hsl(220, 85%, 25%) !important;
}

.section-heading .subtitle {
    color: hsl(355, 85%, 55%) !important;
}

/* Text colors */
.sjm-navy-text {
    color: hsl(220, 85%, 25%) !important;
}

.sjm-coral-text {
    color: hsl(355, 85%, 55%) !important;
}

.sjm-cyan-text {
    color: hsl(190, 90%, 55%) !important;
}

/* Override deposit page title color to white */
.account-form h3.account-form__title.mb-2 {
    color: white !important;
}

.account-status.account-form h3.account-form__title.mb-2 {
    color: white !important;
}

/* Override form labels to black on deposit page */
.account-form .form--label {
    color: black !important;
}

/* Light colored dropdown for gateway selection */
.account-form .form--control.select {
    background-color: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #ddd !important;
}

.account-form .form--control.select option {
    background-color: #ffffff !important;
    color: #333 !important;
}

.account-form .form--control.select:focus {
    background-color: #ffffff !important;
    border-color: #1B2951 !important;
    box-shadow: 0 0 0 0.2rem rgba(27, 41, 81, 0.25) !important;
}

/* Banner Auction Illustration Styling */
.banner-right__content {
    padding: 20px;
    width: 100%;
    max-width: none;
}

.banner-right__content .auction-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 500px;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.banner-right__content .auction-background-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(27, 41, 81, 0.9) 0%, 
        rgba(23, 35, 69, 0.85) 50%, 
        rgba(19, 29, 57, 0.8) 100%);
    z-index: 1;
}

.banner-right__content .auction-illustration {
    position: relative;
    z-index: 2;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.banner-right__content .auction-svg {
    width: 100%;
    height: 100%;
    max-width: 400px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.banner-right__content .auction-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 30px;
    text-align: center;
    color: white;
    z-index: 3;
}

.banner-right__content .auction-content-overlay h4 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-right__content .auction-content-overlay p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-right__content .auction-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.banner-right__content .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.banner-right__content .feature-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* SVG Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-icon {
    animation: float 3s ease-in-out infinite;
}

.floating-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.floating-icon:nth-child(3) {
    animation-delay: 1s;
}

/* Subtle pulse animation for entire container */
.auction-image-container {
    animation: subtle-glow 4s ease-in-out infinite alternate;
}

@keyframes subtle-glow {
    0% { box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 0 0 rgba(27, 41, 81, 0); }
    100% { box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 0 20px rgba(27, 41, 81, 0.2); }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    /* Reset layout to default on tablet and mobile */
    .banner-section .col-lg-6:first-child,
    .banner-section .col-lg-6:last-child {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .banner-right__content {
        margin-top: 30px;
        padding: 10px;
    }
    
    .banner-right__content .auction-image-container {
        height: 400px;
    }
    
    .banner-right__content .auction-content-overlay h4 {
        font-size: 2rem;
    }
    
    .banner-right__content .auction-content-overlay p {
        font-size: 1.1rem;
    }
    
    .banner-right__content .feature-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 576px) {
    .banner-right__content .auction-image-container {
        height: 350px;
    }
    
    .banner-right__content .auction-content-overlay {
        padding: 20px 15px;
    }
    
    .banner-right__content .auction-content-overlay h4 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .banner-right__content .auction-content-overlay p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .banner-right__content .auction-features {
        gap: 10px;
    }
    
    .banner-right__content .feature-tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .banner-right__content .auction-svg {
        max-width: 300px;
    }
}

/* Product Layout - Ensure price is below title */
.product__top {
    display: block !important;
    justify-content: unset !important;
    align-items: unset !important;
    margin-bottom: 10px;
}

.product__price-wrapper {
    margin-top: 8px;
    margin-bottom: 15px;
}

.product__price-wrapper .product__price {
    font-size: 20px;
    font-weight: 700;
    color: white;
    display: block;
    background: #2c3e50;
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    margin: 0;
    text-align: center;
}

.product__top .site-title {
    margin-bottom: 0;
}

.product__top .site-title a {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

/* Style for Bid Now button with High Contrast White Text */
.product-btn {
    background-color: #1B2951 !important;
    color: #FFFFFF !important;
    border: 2px solid #1B2951 !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    text-shadow: none !important;
    box-shadow: 0 2px 8px rgba(27, 41, 81, 0.3) !important;
    letter-spacing: 0.5px !important;
}

.product-btn:hover {
    background-color: #E63946 !important;
    border-color: #E63946 !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    text-shadow: none !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4) !important;
}

/* Force white text in product buttons */
.product-btn, .product-btn * {
    color: #FFFFFF !important;
}

/* Layout tombol Bid Sekarang di bawah input field */
.product-details .product-box__bottom .input-wrapper {
    position: relative;
    display: block;
}

.product-details .product-box__bottom .input-wrapper .form--control {
    border: 1px solid #223a5e !important;
    border-radius: 5px !important;
    padding: 16px !important;
    width: 100%;
    margin-bottom: 15px;
}

.product-details .product-box__bottom .input-wrapper .product-btn {
    position: static !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100%;
    padding: 15px 20px !important;
    border-radius: 5px !important;
    background-color: #1B2951 !important;
    color: #FFFFFF !important;
    border: 2px solid #1B2951 !important;
    font-weight: 700 !important;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: none !important;
    box-shadow: 0 2px 8px rgba(27, 41, 81, 0.3) !important;
    letter-spacing: 0.5px !important;
}

.product-details .product-box__bottom .input-wrapper .product-btn:hover {
    background-color: #E63946 !important;
    border-color: #E63946 !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    text-shadow: none !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4) !important;
}

/* Force white text in detailed product buttons */
.product-details .product-box__bottom .input-wrapper .product-btn,
.product-details .product-box__bottom .input-wrapper .product-btn * {
    color: #FFFFFF !important;
}

/* Counter Section - Single Layer Display */
.experience__count h3 {
    color: hsl(355, 69%, 55%) !important;
    font-weight: 700 !important;
    text-shadow: none !important;
    position: relative;
}

.experience__count .odometer {
    color: hsl(180, 100%, 34%) !important;
}

.experience__count .letter {
    color: hsl(180, 100%, 34%) !important;
    font-size: 0.8em;
    vertical-align: top;
}

/* FIX: Remove red hover background from dashboard_profile area */
.dashboard_profile:hover,
.dashboard_profile *:hover,
.dashboard_profile:hover *,
div.dashboard_profile:hover {
    background-color: transparent !important;
    background: transparent !important;
}

/* Ensure no universal hover effects apply to dashboard_profile */
.dashboard_profile:hover,
.dashboard_profile div:hover,
.dashboard_profile section:hover,
.dashboard_profile article:hover,
.dashboard_profile aside:hover,
.dashboard_profile main:hover,
.dashboard_profile nav:hover,
.dashboard_profile header:hover,
.dashboard_profile footer:hover {
    background-color: transparent !important;
    background: initial !important;
}

/* Additional specific overrides for sidebar area */
.sidebar-menu:hover,
.sidebar-menu *:hover,
body *:hover .dashboard_profile,
*:hover > .dashboard_profile {
    background-color: transparent !important;
    background: transparent !important;
}

/* COMPREHENSIVE FIX: Make sidebar transparent with blue text */
.dashboard_profile,
.dashboard_profile:hover,
.dashboard_profile:hover *,
.dashboard_profile *:hover,
.dashboard_profile:focus,
.dashboard_profile:active,
div.dashboard_profile,
div.dashboard_profile:hover,
section.dashboard_profile:hover,
aside.dashboard_profile:hover {
    background-color: transparent !important;  /* Make sidebar transparent */
    background: transparent !important;        /* Make sidebar transparent */
    transition: none !important;               /* Remove any transition effects */
    border: none !important;                   /* Remove borders */
    box-shadow: none !important;               /* Remove shadows */
}

/* Make sidebar background completely transparent */
.dashboard_profile {
    background-color: transparent !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Override any blue background from original CSS */
.dashboard_profile,
.dashboard_profile * {
    background-color: transparent !important;
    background: transparent !important;
}

/* Style sidebar menu text to blue like logo */
.dashboard_profile .sidebar-menu-list__link,
.dashboard_profile .sidebar-menu-list__link span,
.dashboard_profile a,
.dashboard_profile li a,
.dashboard_profile h3,
.dashboard_profile p,
.dashboard_profile div {
    color: #1B2951 !important;  /* Blue color from logo */
    background-color: transparent !important;
    background: transparent !important;
}

/* Hover effect for menu items - keep blue text */
.dashboard_profile .sidebar-menu-list__item:hover .sidebar-menu-list__link,
.dashboard_profile .sidebar-menu-list__item:hover a,
.dashboard_profile .sidebar-menu-list__link:hover,
.dashboard_profile a:hover {
    color: #1B2951 !important;  /* Keep blue color on hover */
    background-color: rgba(27, 41, 81, 0.1) !important;  /* Subtle blue background on hover */
    background: rgba(27, 41, 81, 0.1) !important;
}

/* Active menu item styling */
.dashboard_profile .sidebar-menu-list__item.active .sidebar-menu-list__link,
.dashboard_profile .sidebar-menu-list__item.active a {
    color: #1B2951 !important;  /* Blue color for active */
    background-color: rgba(27, 41, 81, 0.15) !important;  /* Slightly more blue background */
    background: rgba(27, 41, 81, 0.15) !important;
    font-weight: 600 !important;
}

/* Disable ALL hover effects for sidebar area - using highest specificity */
.dashboard_profile:hover,
.dashboard_profile:hover:hover,
.dashboard_profile:hover:focus,
.dashboard_profile:hover:active,
body .dashboard_profile:hover,
html body .dashboard_profile:hover,
* .dashboard_profile:hover {
    background-color: transparent !important;  /* Force transparent */
    background: transparent !important;        /* Force transparent */
    filter: none !important;                   /* Remove any filters */
    opacity: 1 !important;                     /* Remove opacity changes */
    transform: none !important;                /* Remove transforms */
    box-shadow: none !important;               /* Remove shadow effects */
}

/* DASHBOARD CARD TRANSPARENCY: Make dashboard card backgrounds transparent */
.dashboard-item-wrap .action-category-item {
    background: transparent !important;       /* Remove gradient background */
    background-color: transparent !important; /* Remove any solid background */
    border: 1px solid rgba(27, 41, 81, 0.2) !important; /* Add subtle border for visibility */
}

/* Remove the blur glow effect from behind cards */
.dashboard-item-wrap .action-category-item::before {
    display: none !important;  /* Remove blur glow effect */
}

/* Ensure text remains visible on transparent background */
.dashboard-item-wrap .action-category-item .action-category-item__text h4,
.dashboard-item-wrap .action-category-item .action-category-item__text p {
    color: #1B2951 !important;  /* Blue text like logo */
    font-weight: 600 !important; /* Make text more prominent */
}

/* Keep icon visible with appropriate color */
.dashboard-item-wrap .action-category-item__icon i {
    color: #1B2951 !important;  /* Blue color for icons */
}

/* Maintain SVG background transparency */
.dashboard-item-wrap .action-category-item__icon svg path {
    fill: rgba(27, 41, 81, 0.1) !important;  /* Very subtle blue tint for SVG */
}