
.hero-section {
    position: relative;
    color: #fff;
    overflow: hidden; 
    background: url('https://chixlegend.com/assets/images/owner.png') no-repeat center center/cover;
    height:100%;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 18, 50, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(22, 22, 22, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem; 
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInSlideUp 0.8s ease-out forwards;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
    animation: fadeInSlideUp 0.8s ease-out 0.2s forwards;
    opacity: 0; 
}

.search-container {
    animation: fadeInSlideUp 0.8s ease-out 0.4s forwards;
    opacity: 0; 
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-content {
        padding: 25px;
    }
}
/* searching */
/* searching bar */
.search-container {
    width: 50%; 
    position: relative;
}
.search-form {
    width: 100%;
    position: relative;
}
.search-input {
    background-color: rgba(33, 33, 34, 0.502);
    border-radius: 50px; 
    border: 1px solid #00c3ff; 
    height: 45px;
    padding-left: 20px; 
    padding-right: 50px; 
    color: #fff;
    transition: all 0.3s ease-in-out; 
    box-shadow: 0 0 5px rgba(0, 195, 255, 0); 
}
.search-input::placeholder {
    color: #a0a0a0;
}
.search-input:focus {
    outline: none; 
    border-color: #00c3ff;
   
    box-shadow: 0 0 15px rgba(0, 195, 255, 0.7); 
}
.search-btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #a0a0a0; 
    transition: color 0.3s ease;
}
.search-input:focus + .search-btn {
    color: #00c3ff; 
}
/* Cart Icon Badge Styling */
#cart-item-count {
    font-size: 0.6em;
    padding: 0.25em 0.5em;
}

/* Side Panel (Offcanvas) Styling */
.offcanvas-body {
    padding: 1rem;
}

.cart-item-entry {
    transition: background-color 0.2s ease-in-out;
}

.cart-item-entry:hover {
    background-color: #f8f9fa;
}

.cart-quantity-input {
    text-align: center;
}

/* Ensure wishlist button is clickable over image link */
.image-container .btn-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    background-color: rgba(32, 29, 42, 0.569);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
/* --- Cart Panel Text Color Fix --- */

/* Force base text color for the entire cart panel to be dark */
#cartOffcanvas {
    color: #212529; /* Standard dark text color (Bootstrap default) */
}

/* Ensure specific elements inside dynamically generated cart items are dark */
#cartOffcanvas .cart-item-entry h6,
#cartOffcanvas .cart-item-entry p {
    color: #212529; /* Dark text for item title and details */
}

/* Fix for any potentially inherited light text color on muted elements */
#cartOffcanvas .text-muted {
    color: #6c757d !important; /* Standard muted text color */
}
/* layout */

