/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
    /* padding-top will be set dynamically by JavaScript */
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #38b2ac 0%, #319795 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}



/* Fixed Navigation Container */
.fixed-nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

/* Event Banner Styles */
.event-banner {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: white;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.event-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.event-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.event-details {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 2rem;
    color: white;
    align-items: center;
}

/* Event icon styles removed - not needed for current design */

.event-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: white;
    white-space: nowrap;
}

.event-offer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.875rem;
    white-space: nowrap;
}

.event-emoji {
    font-size: 1.2rem;
}

.event-details i {
    color: #90cdf4;
    width: 16px;
}

/* Event banner styles cleaned up */

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 0;
    position: relative;
    min-height: 80px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
    cursor: pointer;
    padding: 8px;
    margin: -8px;
    border-radius: 8px;
    display: block;
}

.logo-link:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px;
    margin: -8px;
}

.logo-link:active {
    transform: scale(0.98);
}

.logo-link:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
    border-radius: 8px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.logo-text p {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Header info styles removed - not needed for current design */

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.notifications {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: background-color 0.2s;
    color: white;
}

.notifications:hover {
    background: rgba(255, 255, 255, 0.1);
}

.shop-btn {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: transform 0.2s;
}

.shop-btn:hover {
    transform: translateY(-2px);
}

.test-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: transform 0.2s;
}

.test-btn:hover {
    transform: translateY(-2px);
}

.admin-link {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* System Status Section */
.system-status {
    padding: 2rem 0;
    margin: 0;
}

.system-status.warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-top: 1px solid #f59e0b;
    border-bottom: 1px solid #f59e0b;
}

.system-status.error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-top: 1px solid #ef4444;
    border-bottom: 1px solid #ef4444;
}

.status-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.status-content i {
    font-size: 2rem;
    color: #92400e;
}

.system-status.error .status-content i {
    color: #dc2626;
}

.status-text h3 {
    color: #92400e;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.system-status.error .status-text h3 {
    color: #dc2626;
}

.status-text p {
    color: #78350f;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.system-status.error .status-text p {
    color: #991b1b;
}

.status-action-btn {
    display: inline-block;
    background: #f59e0b;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.status-action-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.status-action-btn.secondary {
    background: rgba(245, 158, 11, 0.1);
    color: #92400e;
    border: 2px solid #f59e0b;
}

.status-action-btn.secondary:hover {
    background: #f59e0b;
    color: white;
}

.system-status.error .status-action-btn {
    background: #ef4444;
}

.system-status.error .status-action-btn:hover {
    background: #dc2626;
}

.system-status.error .status-action-btn.secondary {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 2px solid #ef4444;
}

.system-status.error .status-action-btn.secondary:hover {
    background: #ef4444;
    color: white;
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
}

.flash-message {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideIn 0.3s ease-out;
}

.flash-message.success {
    border-left: 4px solid #48bb78;
}

.flash-message.error {
    border-left: 4px solid #f56565;
}

.close-flash {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #718096;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fff8d6 0%, #ffe28e 100%);
    padding: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 1.5rem;
}

.hero-logo-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.hero-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.west-street {
    color: #2d3748;
    display: block;
}

.lemonade {
    color: #ed8936;
    display: block;
}

.hero-description {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-button {
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.cta-button.primary {
    background: linear-gradient(135deg, #68d391 0%, #48bb78 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(104, 211, 145, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #2d3748;
    border: 2px solid #e2e8f0;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #48bb78;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.action-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.action-btn {
    padding: 1rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s;
    font-size: 1rem;
}

.action-btn.shop {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
}

.action-btn.notify {
    background: white;
    color: #2d3748;
    border: 2px solid #e2e8f0;
    cursor: pointer;
}

.action-btn:hover {
    transform: translateY(-2px);
}

/* Merchandise Preview Section */
.merch-preview {
    padding: 4rem 0;
    background: #fefefe;
}

.merch-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.merch-preview > .container > p {
    text-align: center;
    font-size: 1.125rem;
    color: #718096;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.product-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #f7fafc;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    margin: 0 auto 1.5rem;
    text-align: center;
}

.product-thumbnail {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.product-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-image-link:hover {
    text-decoration: none;
}

/* Product Detail Page Styles */
.product-detail-header {
    background: linear-gradient(135deg, #fff8d6 0%, #ffe28e 100%);
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #ed8936;
}

.product-detail-section {
    padding: 3rem 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-images {
    text-align: center;
}

.product-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-main-image:hover {
    transform: scale(1.02);
}

.product-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 0 auto;
}

.product-info {
    padding: 1rem 0;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-description {
    font-size: 1.125rem;
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-price-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-price-large .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ed8936;
}

.product-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #4a5568;
}

.detail-value {
    color: #718096;
}

.purchase-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.purchase-options .option-group {
    display: flex;
    flex-direction: column;
}

.checkout-btn-large {
    width: 100%;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.checkout-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3);
}

.checkout-btn-large:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.additional-info {
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #718096;
    font-size: 0.875rem;
}

.info-item i {
    color: #48bb78;
    width: 16px;
}

.related-products {
    background: #f7fafc;
    padding: 3rem 0;
}

.related-products h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Homepage Product Actions */
.product-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}

.view-details-btn,
.shop-now-btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-details-btn {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: white;
    border: none;
}

.view-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.4);
}

.shop-now-btn {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
    border: none;
}

.shop-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237, 137, 54, 0.4);
}

.related-product-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.related-product-link {
    text-decoration: none;
    color: inherit;
}

.related-product-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.related-product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1rem;
}

.related-product-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.related-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ed8936;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .purchase-options {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        padding: 0 1rem;
    }
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.product-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.product-card p {
    color: #718096;
    margin-bottom: 1.5rem;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ed8936;
}

.popular-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-options {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.size-select,
.color-select {
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: white;
    color: #2d3748;
    font-size: 0.875rem;
    min-width: 100px;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    transition: transform 0.2s;
}

.checkout-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    width: 100%;
    justify-content: center;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.checkout-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.view-all-container {
    text-align: center;
}

.view-all-btn {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s;
}

.view-all-btn:hover {
    transform: translateY(-2px);
}

/* Email Subscription Section */
.subscription-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff8d6 0%, #ffe28e 100%);
}

.subscription-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.subscription-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.subscription-header i {
    font-size: 2rem;
    color: #ed8936;
}

.subscription-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
}

.subscription-box > p {
    font-size: 1.125rem;
    color: #718096;
    margin-bottom: 2rem;
}

.subscription-form {
    max-width: 400px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.input-group input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.input-group input[type="email"]:focus {
    border-color: #ed8936;
}

.subscribe-btn {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    white-space: nowrap;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #fefefe;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f7fafc;
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.feature-card p {
    color: #718096;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-section p {
    color: #cbd5e0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: #fbbf24;
    width: 16px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    text-decoration: none;
    transition: background-color 0.2s;
}

.social-link:hover {
    background: rgba(251, 191, 36, 0.3);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px 0;
    text-align: center;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

/* Merchandise Page Specific Styles */
.merch-header {
    background: linear-gradient(135deg, #fff8d6 0%, #ffe28e 100%);
    padding: 3rem 0;
    text-align: center;
    color: #2d3748;
}

.merch-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.merch-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.products-section {
    padding: 4rem 0;
    background: #fefefe;
}

.product-card.detailed {
    max-width: 400px;
    margin: 0 auto;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.option-group label {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.875rem;
}

/* Button Group Styles */
.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.option-btn {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    color: #4a5568;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 60px;
    text-align: center;
    flex: 1;
    min-width: 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Responsive button groups */
@media (max-width: 768px) {
    .button-group {
        gap: 0.25rem;
    }
    
    .option-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        min-width: 50px;
    }
    
    .thumbnail-grid {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        gap: 0.75rem;
    }
    
    .color-swatch {
        width: 40px;
        height: 40px;
    }
}

.option-btn:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
    color: #2d3748;
}

.option-btn.selected {
    background: #38b2ac;
    border-color: #38b2ac;
    color: white;
    transform: scale(1.02);
}

.option-btn.selected:hover {
    background: #319795;
    border-color: #319795;
}

/* Thumbnail Preview Styles */
.thumbnail-preview {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.thumbnail-preview h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    text-align: center;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 1rem;
    justify-items: center;
}

.thumbnail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.thumbnail-item:hover {
    transform: scale(1.05);
}

.thumbnail-item.active .color-swatch {
    border: 3px solid #38b2ac;
    transform: scale(1.1);
}

.color-swatch {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.color-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: #4a5568;
    text-align: center;
}

/* Variant thumbnail styles */
.variant-thumbnail {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #f7fafc;
}

/* Loading state for variant thumbnails */
.variant-thumbnail:not([src]), 
.variant-thumbnail[src=""] {
    background-color: #e2e8f0;
    position: relative;
}

.variant-thumbnail:not([src])::after, 
.variant-thumbnail[src=""]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #cbd5e0;
    border-top-color: #38b2ac;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.thumbnail-item.active .variant-thumbnail {
    border: 3px solid #38b2ac;
    transform: scale(1.1);
}

.thumbnail-item:hover .variant-thumbnail {
    transform: scale(1.05);
}

/* Color-specific styles for common t-shirt colors */
.color-swatch[style*="white"] {
    background-color: #ffffff !important;
    border: 2px solid #e2e8f0;
}

.color-swatch[style*="black"] {
    background-color: #000000 !important;
}

.color-swatch[style*="navy"] {
    background-color: #1e3a8a !important;
}

.color-swatch[style*="gray"] {
    background-color: #6b7280 !important;
}

.color-swatch[style*="red"] {
    background-color: #dc2626 !important;
}

.color-swatch[style*="blue"] {
    background-color: #2563eb !important;
}

.color-swatch[style*="green"] {
    background-color: #16a34a !important;
}

.product-form {
    text-align: left;
}

/* Story Page Specific Styles */
.story-hero {
    background: linear-gradient(135deg, #fff8d6 0%, #ffe28e 100%);
    padding: 4rem 0;
    text-align: center;
    color: #2d3748;
}

.story-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.story-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.story-content {
    padding: 4rem 0;
    background: #fefefe;
}

.story-text-large {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.story-text-large p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #2d3748;
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-year {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.125rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.timeline-content p {
    color: #718096;
    line-height: 1.6;
}

.values-section {
    padding: 4rem 0;
    background: white;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2d3748;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #fefefe;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f7fafc;
    transition: transform 0.2s;
}

.value-card:hover {
    transform: translateY(-4px);
}

.team-section {
    padding: 4rem 0;
    background: #fefefe;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.team-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #718096;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f7fafc;
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.member-role {
    color: #ed8936;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #718096;
    line-height: 1.6;
}

.story-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff8d6 0%, #ffe28e 100%);
    text-align: center;
    color: #2d3748;
}

.story-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.story-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
}

.cta-btn.secondary {
    background: white;
    color: #2d3748;
    border: 2px solid #e2e8f0;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile padding will be handled by JavaScript */
}
    
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .header-info {
        justify-content: center;
    }
    
    .event-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .event-meta {
        justify-content: center;
    }
    
    .hero {
        min-height: 70vh;
        padding: 1.5rem 0;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
        max-width: 400px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-year {
        align-self: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Admin Panel Styles */
.admin-header {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    padding: 3rem 0;
    text-align: center;
    color: white;
}

.admin-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.admin-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.admin-content {
    padding: 3rem 0;
    background: #f7fafc;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.admin-panel {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.admin-panel h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2d3748;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.75rem;
}

.status-display {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f7fafc;
    border-radius: 8px;
}

.status-label {
    font-weight: 600;
    color: #4a5568;
}

.status-value {
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

.status-value.open {
    background: #c6f6d5;
    color: #22543d;
}

.status-value.closed {
    background: #fed7d7;
    color: #742a2a;
}

.status-value.visible {
    background: #bee3f8;
    color: #2a4365;
}

.status-value.hidden {
    background: #e2e8f0;
    color: #4a5568;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3182ce;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.admin-btn {
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    transition: all 0.2s;
    text-decoration: none;
    font-size: 1rem;
}

.admin-btn.primary {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: white;
}

.admin-btn.success {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
}

.admin-btn.warning {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
}

.admin-btn.secondary {
    background: #718096;
    color: white;
}

.admin-btn.danger {
    background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
    color: white;
}

.admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.admin-actions .admin-btn {
    width: 100%;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-actions .admin-btn {
    width: 100%;
}

@media (max-width: 768px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-panel {
        padding: 1.5rem;
    }
    
    .status-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Success Page Styling */
.success-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff8d6 0%, #ffe28e 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.success-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 2rem;
}

.success-content h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.success-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.order-details, .next-steps {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.order-details h3, .next-steps h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.next-steps ul {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.next-steps li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.action-buttons .cta-button {
    min-width: 200px;
}

.cta-button.secondary {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.cta-button.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}

/* Admin Login Styles */
.admin-login-header {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    padding: 3rem 0;
    text-align: center;
    color: white;
}

.admin-login-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.admin-login-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.admin-login-content {
    padding: 4rem 0;
    background: #f7fafc;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.login-container {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.login-box {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header i {
    font-size: 3rem;
    color: #3182ce;
    margin-bottom: 1rem;
}

.login-header h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2d3748;
}

.login-error {
    background: #fed7d7;
    color: #742a2a;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #feb2b2;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.login-form .form-group label {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.875rem;
}

.login-form .form-group input {
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.login-form .form-group input:focus {
    outline: none;
    border-color: #3182ce;
}

.login-btn {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    transition: all 0.2s;
    font-size: 1rem;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.4);
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.login-footer p {
    color: #718096;
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 480px) {
    /* Small screen padding will be handled by JavaScript */
}
    
    .container {
        padding: 0 15px;
    }
    
    .event-banner {
        padding: 0.75rem 0;
    }
    
    .event-banner-content {
        padding: 0 15px;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero {
        padding: 1rem 0;
        min-height: 60vh;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
        max-width: 300px;
    }
    
    .subscription-box {
        padding: 2rem 1.5rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
}
