/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.logo a {
    color: #2d3748;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    color: #718096;
    font-size: 1.1rem;
    margin-top: 5px;
    font-weight: 400;
}

/* Main content */
.main-content {
    padding: 40px 0;
}

.date-banner {
    text-align: center;
    margin-bottom: 40px;
}

.date-banner h2 {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Shirt display */
.shirt-display {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}

.current-shirt {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shirt-image {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.shirt-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.live-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.shirt-info h3 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 700;
}

.description {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.5;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 25px;
}

.buy-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    width: 100%;
    margin-bottom: 30px;
}

.buy-btn:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.buy-btn.disabled {
    background: #cbd5e0;
    color: #a0aec0;
    cursor: not-allowed;
    box-shadow: none;
}

/* Share buttons */
.share-buttons {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.share-buttons h4 {
    color: #4a5568;
    margin-bottom: 15px;
    font-size: 1rem;
}

.share-btn {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    color: #4a5568;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.share-btn:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-1px);
}

.share-btn.twitter:hover { border-color: #1da1f2; color: #1da1f2; }
.share-btn.facebook:hover { border-color: #4267b2; color: #4267b2; }

/* Coming soon state */
.coming-soon {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.placeholder-icon {
    font-size: 6rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.coming-soon h3 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.coming-soon p {
    font-size: 1.2rem;
    color: #718096;
}

/* Yesterday's ghost shirt */
.yesterday-shirt {
    position: relative;
    opacity: 0.6;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 20px;
    max-width: 300px;
}

.ghost-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.yesterday-shirt img {
    width: 100%;
    border-radius: 10px;
    filter: grayscale(0.5);
}

.yesterday-shirt .shirt-info {
    text-align: center;
    margin-top: 15px;
}

.yesterday-shirt h4 {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 8px;
}

.sold-out {
    color: #e53e3e;
    font-weight: 600;
    margin-bottom: 5px;
}

.yesterday-shirt small {
    color: #718096;
    font-size: 0.85rem;
}

/* Email signup section */
.email-signup-section {
    margin: 60px 0;
}

.signup-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.signup-box h3 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.signup-box p {
    color: #718096;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.email-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.email-form input[type="email"] {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.email-form input[type="email"]:focus {
    border-color: #667eea;
}

.email-form button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.email-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.signup-box small {
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: rgba(45, 55, 72, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p,
.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #667eea;
    transition: color 0.3s ease;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0aec0;
}

.size-option {
  cursor: pointer;
}

.size-btn {
  display: inline-block;
  padding: 8px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: white;
  color: #4a5568;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 40px;
  text-align: center;
}

.size-btn:hover {
  border-color: #667eea;
  color: #667eea;
}

.size-option input:checked + .size-btn {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

/* Responsive design */
@media (max-width: 768px) {
    .shirt-display {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .yesterday-shirt {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .logo a {
        font-size: 2rem;
    }
    
    .date-banner h2 {
        font-size: 1.5rem;
    }
    
    .current-shirt {
        padding: 25px;
    }
}
