/* Creative Cubs Website Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica', 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

/* Announcement Bar */
.announcement-bar {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
}

/* Header */
header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

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

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000;
    text-decoration: none;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
nav {
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #666;
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 60px;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Page Titles */
.page-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #000;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
    position: relative;
}

.sold-out-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff4444;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #000;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn {
    background-color: #000;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #333;
}

/* Manual Page */
.manual-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.manual-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #333;
}

.download-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.download-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    min-width: 300px;
    text-align: center;
}

.download-btn:hover {
    background-color: #333;
}

/* Safety Page */
.safety-content {
    max-width: 800px;
    margin: 0 auto;
}

.safety-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
}

.safety-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.safety-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.safety-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.commitment-list {
    list-style: none;
    padding: 0;
}

.commitment-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    color: #333