/**
 * Shop Banner Widget Styles
 */

/* Container */
.shop-banner-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

/* Background */
.shop-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Overlay */
.shop-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Content */
.shop-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 40px;
    color: #fff;
}

/* Title */
.shop-banner-title {
    font-size: 64px;
    font-weight: 700;
    margin: 0 0 30px;
    color: #fff;
    line-height: 1.2;
}

/* Letter Spacing for title */
.shop-banner-title.spaced {
    letter-spacing: 20px;
}

/* Button */
.shop-banner-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    margin-top: 30px;
    border: 1px solid #fff;
}

.shop-banner-button:hover {
    background-color: #000;
    color: #fff;
}

/* Accent Bars */
.accent-bar {
    background-color: #fff;
    height: 4px;
    width: 200px;
    margin: 0 auto;
}

.accent-bar-top {
    margin-bottom: 30px;
}

.accent-bar-bottom {
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .shop-banner-title {
        font-size: 48px;
    }
    
    .shop-banner-title.spaced {
        letter-spacing: 15px;
    }
}

@media (max-width: 767px) {
    .shop-banner-container {
        height: 400px;
    }
    
    .shop-banner-title {
        font-size: 36px;
    }
    
    .shop-banner-title.spaced {
        letter-spacing: 10px;
    }
    
    .shop-banner-button {
        padding: 12px 30px;
        font-size: 12px;
    }
    
    .accent-bar {
        width: 150px;
    }
    
    .accent-bar-top {
        margin-bottom: 20px;
    }
    
    .accent-bar-bottom {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .shop-banner-container {
        height: 350px;
    }
    
    .shop-banner-title {
        font-size: 28px;
    }
    
    .shop-banner-title.spaced {
        letter-spacing: 8px;
    }
    
    .shop-banner-content {
        padding: 20px;
    }
    
    .accent-bar {
        width: 120px;
    }
} 