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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
    font-style: italic;
}

.logo-main .dizee {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.logo-main .pc {
    color: #ff0000;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.logo-tagline {
    color: #4a9fd8;
    font-size: 0.75rem;
    font-style: italic;
    margin-top: -5px;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: #ff0000;
}

.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #ff0000 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

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

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.cta-button {
    background: white;
    color: #ff0000;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.cta-button:hover {
    background: #ff0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 900;
}

.section-title span {
    color: #ff0000;
}

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

.product-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(255,0,0,0.2);
    border-color: #ff0000;
}

.product-image {
    width: 100%;
    height: 250px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff0000;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.product-brand {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.product-name {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.product-price {
    color: #ff0000;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.product-description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.product-dropdown {
    width: 100%;
    padding: 0.9rem;
    margin-bottom: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
}

.product-dropdown:focus {
    outline: none;
    border-color: #ff0000;
}

.add-to-cart {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s;
    text-transform: uppercase;
}

.add-to-cart:hover {
    background: #ff0000;
    transform: translateY(-2px);
}

.add-to-cart:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.features {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    padding: 3rem 0;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    transition: all 0.3s;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.newsletter {
    background: linear-gradient(135deg, #1a1a1a 0%, #ff0000 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    min-width: 250px;
}

.newsletter-button {
    background: white;
    color: #ff0000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
}

.newsletter-button:hover {
    background: #1a1a1a;
    color: white;
}

footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 2rem;
}

.cart-indicator {
    background: #ff0000;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
    cursor: pointer;
}

.cart-indicator:hover {
    background: white;
    color: #ff0000;
}

.contact {
    color: #666;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1rem;
    font-size: 1.3rem;
}

.contact-fb {
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1rem;
    font-size: 2.3rem;
}

.contact-fb1 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    font-style: italic;
}