:root {
    --main-color: #945bf9;
    --main-color-dark: #7a40e0;
    --main-color-light: #ab7cff;
    --text-color: #333;
    --text-color-light: #666;
    --background-color: #f9f9f9;
    --white: #fff;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
}

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


/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.logo {
  flex: 0 0 auto;
}

.logo img {
  width: 150px;
  height: auto;
}

.nav-categories {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0 15px;
}

.nav-link {
  color: var(--text-color);
  font-size: 1rem;
  text-decoration: none;
}

.nav-link:hover {
    color: var(--main-color);
}

.nav-icons {
  display: flex;
  align-items: center;
}

.icon-link {
    color: var(--main-color);
  font-size: 1.2rem;
  margin-left: 20px;
  text-decoration: none;
}

/* Container for consistent width */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section Styles */
.hero {
    background-color: var(--main-color-light);
    padding: 6rem 0;
}

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

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.btn-primary {
    background-color: var(--main-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--main-color-dark);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--main-color);
}

.btn-secondary:hover {
    background-color: var(--background-color);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive design */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* Product Gallery Styles */
.product-gallery {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.product-content {
    max-width: 1200px;
    margin: 0 auto;
}

.product-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 1.5rem 1rem 1rem 1rem; /* Added more padding for wireframe look */
    border: 2px #bbb; /* Wireframe style border */
    min-height: 320px; /* Ensures cards are visually balanced even with SVGs */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0.5rem;
    justify-content: space-between;
    gap: 1rem;
}

.product-card:hover {
    transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(148, 91, 249, 0.2);

}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card .wireframe-img {
    width: 100%;
    display: flex;
    justify-content: center;
}

.wireframe-img-placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    background: #f0f0f0;
    border: 1.5px dashed #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    font-family: monospace, monospace;
    letter-spacing: 0.5px;
    text-align: center;
}

.product-details {
      color: var(--text-color);
    padding: 0;
    width: 100%;
    text-align: left;
}

.product-details h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-details p {
    font-size: 0.9rem;
    color: var(--text-color-light);
    margin-bottom: 0.5rem;
}

.product-details .price {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--main-color);
    margin-top: 0.5rem;
}

/* Responsive design for smaller screens */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Features and Support Sections */
.features,
.support {
    padding: 4rem 0;
    background-color: var(--white);
}

.features h2,
.support h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--main-color);
    margin-bottom: 2rem;
}

.feature-cards,
.support-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.feature-card,
.support-card {
    background-color: var(--background-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(148, 91, 249, 0.2);
}

.feature-card i,
.support-card i {
    font-size: 3rem;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.feature-card h3,
.support-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.feature-card p,
.support-card p {
    font-size: 1rem;
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
}

.feature-card .btn,
.support-card .btn {
    margin-top: auto;
}

/* Responsive design */
@media (max-width: 768px) {
    .feature-cards,
    .support-cards {
        flex-direction: column;
        align-items: center;
    }

    .feature-card,
    .support-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 2rem;
    }

    .features h2,
    .support h2 {
        font-size: 2rem;
    }

    .feature-card h3,
    .support-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p,
    .support-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .features,
    .support {
        padding: 3rem 0;
    }

    .features h2,
    .support h2 {
        font-size: 1.8rem;
    }

    .feature-card,
    .support-card {
        padding: 1.5rem;
    }

    .feature-card i,
    .support-card i {
        font-size: 2.5rem;
    }

    .feature-card h3,
    .support-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p,
    .support-card p {
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Footer Styles */
.footer {
 background-color: var(--main-color);
    color: var(--white);  padding: 2rem;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.social-media {
  margin-bottom: 1rem;
}

.social-list {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-list li {
  margin: 0 10px;
}

.social-link a {
    color: var(--white);
  font-size: 1.5rem;
}

.copyright {
    color: var(--white);
}
