/* Storm Born Tees - Original Gold Theme Styling */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles - Dark Theme */
.header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 3px solid #ffd700;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling - Fixed to 175px, no white filter */
.logo-image {
    height: 175px;
    width: auto;
    max-width: 250px;
}

.search-container {
    position: relative;
    flex: 1;
    max-width: 400px;
    margin: 0 2rem;
    display: none;
}

.search-container.active {
    display: block;
}

#searchInput {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #ffd700;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    background: #2d2d2d;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

#searchInput:focus {
    border-color: #ffed4e;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-actions button {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border: none;
    font-size: 1.2rem;
    color: #000;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.header-actions button:hover {
    background: linear-gradient(135deg, #ffed4e, #fff176);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    border: 2px solid #000;
}

/* Navigation - Storm Born Gold Theme */
.navigation {
    background: linear-gradient(135deg, #2d2d2d 0%, #404040 100%);
    padding: 1rem 0;
    border-bottom: 2px solid #ffd700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Promotional Banner - Storm Born Gold Style */
.promo-banner {
    background: linear-gradient(45deg, #ffd700, #ffed4e, #fff176);
    color: #000;
    text-align: center;
    padding: 1.5rem 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.6); }
}

/* Main Content */
.main-content {
    padding: 3rem 0;
    background: transparent;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #ffd700;
}

.section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.view-all-btn {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid #ffd700;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all-btn:hover {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Filter Controls */
.filter-controls select {
    padding: 0.75rem 1rem;
    border: 2px solid #ffd700;
    border-radius: 8px;
    font-size: 1rem;
    background: #2d2d2d;
    color: #e0e0e0;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.filter-controls select:focus {
    border-color: #ffed4e;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Products Grid - Enhanced */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #404040 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 2rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #e0e0e0;
    line-height: 1.4;
    min-height: 60px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-family: 'Oswald', sans-serif;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.add-btn, .view-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.add-btn:hover {
    background: linear-gradient(135deg, #ffed4e, #fff176);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.view-btn {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.view-btn:hover {
    background: linear-gradient(135deg, #5a6268, #495057);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

/* Sections */
.featured-section,
.all-products-section {
    margin-bottom: 4rem;
}

/* Footer - Storm Born Gold Dark Theme */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #e0e0e0;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    border-top: 3px solid #ffd700;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 50%;
    background: #2d2d2d;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #404040;
    color: #b0b0b0;
}

/* Loading States */
.loading {
    text-align: center;
    padding: 3rem;
    color: #ffd700;
    font-size: 1.2rem;
}

.loading::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid #404040;
    border-top: 3px solid #ffd700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error and Success Messages */
.no-results {
    text-align: center;
    padding: 3rem;
    color: #b0b0b0;
    font-size: 1.2rem;
    background: #2d2d2d;
    border-radius: 10px;
    border: 2px solid #404040;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ffed4e, #fff176);
}