/* Coinage Cash Modern UI Styles */

/* Hero Section Improvements */
.wsus__banner_2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.wsus__banner_2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.wsus__banner_2 .container {
    position: relative;
    z-index: 2;
}

.wsus__banner_text_2 h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.wsus__banner_text_2 form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    margin-top: 2rem;
}

.wsus__banner_text_2 form input[type="text"] {
    border: none;
    background: transparent;
    padding: 15px 25px;
    font-size: 1.1rem;
    border-radius: 50px;
    outline: none;
    width: calc(100% - 150px);
}

.wsus__banner_text_2 form .common_btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4);
}

.wsus__banner_text_2 form .common_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.6);
}

/* Category Cards */
.wsus__categories_item_2 {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

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

.wsus__categories_item_2:hover::before {
    left: 100%;
}

.wsus__categories_item_2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.wsus__categories_item_2 .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.wsus__categories_item_2 .icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.wsus__categories_item_2 h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.wsus__categories_item_2 p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Product Gallery */
.wsus__gallery_item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.wsus__gallery_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.wsus__gallery_item_img {
    position: relative;
    overflow: hidden;
}

.wsus__gallery_item_img img {
    transition: transform 0.3s ease;
}

.wsus__gallery_item:hover .wsus__gallery_item_img img {
    transform: scale(1.05);
}

.wsus__gallery_item_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.wsus__gallery_item:hover .wsus__gallery_item_overlay {
    opacity: 1;
}

.wsus__gallery_item_overlay li a {
    background: #fff;
    color: #333;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.wsus__gallery_item_overlay li a:hover {
    background: #667eea;
    color: #fff;
    transform: translateY(-2px);
}

.wsus__gallery_item_text {
    padding: 1.5rem;
}

.wsus__gallery_item_text .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.wsus__gallery_item_text .title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.wsus__gallery_item_text .title:hover {
    color: #667eea;
}

/* Counter Section */
.wsus__single_counter {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.wsus__single_counter:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

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

.wsus__single_counter h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.wsus__single_counter p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* Section Headings */
.wsus__section_heading h5 {
    color: #667eea;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.wsus__section_heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
}

/* Buttons */
.common_btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.common_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .wsus__banner_text_2 h1 {
        font-size: 2.5rem;
    }
    
    .wsus__banner_text_2 form input[type="text"] {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .wsus__banner_text_2 form .common_btn {
        width: 100%;
    }
    
    .wsus__section_heading h2 {
        font-size: 2rem;
    }
}

/* Glassmorphism Effects */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}