
  :root {
    --primary: #ff5722;
    --secondary: #2196f3;
    --dark: #212121;
    --light: #f5f5f5;
    --gray: #757575;
    --success: #4caf50;
    --error: #f44336;
    --white: #ffffff;
    --black: #000000;
  }

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

  body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
  }

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

  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
  }

  h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
  }

  h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
  }

  h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
  }

  h3 {
    font-size: 1.5rem;
  }

  p {
    margin-bottom: 1rem;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  a:hover {
    color: var(--primary);
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  /* Hero Section */
  .hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
  }

  .bg-image {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
  }

  .hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }

  .hero-section .content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
  }

  .hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light);
  }

  .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
  }

  .cta-button:hover {
    background-color: transparent;
    color: var(--white);
  }

  /* About Section */
  .about-section {
    padding: 5rem 0;
    background-color: var(--white);
  }

  .about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .about-text {
    flex: 1;
  }

  .about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .about-image img:hover {
    transform: scale(1.05);
  }

  /* Offer Section */
  .offer-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--light);
  }

  .offer-section .bg-image {
    opacity: 0.1;
  }

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

  .category-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }

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

  .category-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--dark);
  }

  .category-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
  }

  .category-link {
    display: block;
    padding: 1rem 1.5rem;
    background-color: var(--secondary);
    color: var(--white);
    text-align: center;
    font-weight: 700;
    transition: background-color 0.3s ease;
  }

  .category-link:hover {
    background-color: var(--primary);
    color: var(--white);
  }

  /* New Arrivals */
  .new-arrivals {
    padding: 5rem 0;
    background-color: var(--white);
  }

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

  .product-card {
    position: relative;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding-bottom: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }

  .product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 1;
  }

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

  .product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--dark);
  }

  .product-description {
    padding: 0 1.5rem;
    color: var(--gray);
    min-height: 80px;
  }

  .product-price {
    padding: 0.5rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
  }

  .add-to-cart {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem;
    padding: 0.75rem 0;
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .add-to-cart:hover {
    background-color: var(--primary);
  }

  .add-to-cart i {
    margin-right: 0.5rem;
  }

  /* Testimonials */
  .testimonials {
    position: relative;
    padding: 5rem 0;
    background-color: var(--light);
    color: var(--dark);
  }

  .testimonials .bg-image {
    opacity: 0.1;
  }

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

  .testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
  }

  .testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
  }

  .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
  }

  .author-info h4 {
    margin-bottom: 0.25rem;
  }

  .author-info p {
    color: var(--gray);
    margin-bottom: 0;
  }

  /* Contact Section */
  .contact-section {
    padding: 5rem 0;
    background-color: var(--white);
  }

  .contact-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .contact-info, .contact-form {
    flex: 1;
  }

  .contact-list {
    list-style: none;
    margin-bottom: 2rem;
  }

  .contact-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
  }

  .contact-list i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
  }

  .social-media {
    display: flex;
    gap: 1rem;
  }

  .social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }

  .social-media a:hover {
    background-color: var(--primary);
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }

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

  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
  }

  .submit-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

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

  /* Media Queries */
  @media (min-width: 768px) {
    h1 {
      font-size: 3.5rem;
    }

    h2 {
      font-size: 2.5rem;
    }

    .about-content {
      flex-direction: row;
    }

    .categories-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .product-slider {
      grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
      flex-direction: row;
    }
  }

  @media (min-width: 1024px) {
    h1 {
      font-size: 4rem;
    }

    .categories-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .product-slider {
      grid-template-columns: repeat(3, 1fr);
    }
  }
