
  :root {
    --primary: #ffcf00;
    --primary-dark: #e6bb00;
    --secondary: #006db7;
    --secondary-dark: #00558f;
    --dark: #202020;
    --light: #ffffff;
    --gray: #f2f2f2;
    --gray-dark: #d9d9d9;
    --text: #333333;
    --text-light: #666666;
    --success: #28a745;
    --danger: #dc3545;
    --border-radius: 4px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

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

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

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

  h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  p {
    margin-bottom: 1rem;
  }

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

  a:hover {
    color: var(--secondary-dark);
  }

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

  .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
  }

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

  /* Buttons */
  .cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: var(--dark);
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    font-size: 1rem;
    box-shadow: var(--shadow);
  }

  .cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
  }

  .secondary-btn {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: var(--secondary);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    border: 2px solid var(--secondary);
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
  }

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

  .secondary-btn i {
    margin-left: 8px;
  }

  .add-to-cart-btn {
    display: block;
    width: 100%;
    background-color: var(--secondary);
    color: var(--light);
    font-weight: 600;
    padding: 10px 16px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
  }

  .add-to-cart-btn:hover {
    background-color: var(--secondary-dark);
    color: var(--light);
  }

  /* Hero Section */
  .hero-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light);
    overflow: hidden;
    margin-bottom: 3rem;
  }

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

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

  .content-wrapper {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
  }

  .hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  /* Promotions Section */
  .promotions-section {
    padding: 4rem 0;
    background-color: var(--gray);
  }

  .promotions-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-bottom: 2rem;
  }

  .promo-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

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

  .promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--danger);
    color: var(--light);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-weight: 700;
    z-index: 1;
  }

  .promo-content {
    padding: 20px;
  }

  .original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }

  .promo-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--danger);
    margin-bottom: 1rem;
  }

  .promo-desc {
    margin-bottom: 1.5rem;
    color: var(--text-light);
  }

  .featured {
    border: 2px solid var(--primary);
  }

  .view-more {
    text-align: center;
    margin-top: 2rem;
  }

  /* Limited Offers Section */
  .limited-offers {
    padding: 4rem 0;
    background-color: var(--light);
  }

  .countdown-container {
    background-color: var(--dark);
    color: var(--light);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    text-align: center;
  }

  .countdown-info h3 {
    margin-bottom: 1.5rem;
  }

  .countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .time-block {
    background-color: var(--secondary);
    padding: 15px;
    border-radius: var(--border-radius);
    min-width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .time-block span:first-child {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
  }

  .time-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 5px;
  }

  .limited-offers-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .limited-offer-card {
    background-color: var(--gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
  }

  .limited-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--secondary);
    color: var(--light);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-weight: 700;
    z-index: 1;
  }

  .offer-content {
    padding: 20px;
  }

  .limited-desc {
    margin-bottom: 1rem;
  }

  .limited-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
  }

  .stock-info {
    margin-bottom: 1.5rem;
  }

  .stock-bar {
    height: 10px;
    background-color: var(--gray-dark);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 5px;
  }

  .stock-level {
    height: 100%;
    background-color: var(--danger);
  }

  .stock-text {
    font-size: 0.9rem;
    color: var(--text-light);
  }

  /* Bundle Deals Section */
  .bundle-deals {
    position: relative;
    padding: 4rem 0;
    color: var(--dark);
  }

  .bundle-deals::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: -1;
  }

  .bundle-deals .container {
    position: relative;
    z-index: 1;
  }

  .bundles-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .bundle-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
  }

  .bundle-products {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }

  .bundle-product {
    text-align: center;
    margin-bottom: 1rem;
  }

  .bundle-product img {
    border-radius: var(--border-radius);
    margin-bottom: 0.5rem;
    margin: 0 auto;
  }

  .bundle-plus {
    font-size: 1.5rem;
    color: var(--secondary);
    margin: 10px 0;
  }

  .bundle-pricing {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 15px;
    background-color: var(--gray);
    border-radius: var(--border-radius);
  }

  .bundle-original {
    text-decoration: line-through;
    color: var(--text-light);
  }

  .bundle-promo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--danger);
  }

  .bundle-save {
    font-weight: 600;
    color: var(--success);
  }

  /* Promo Rules Section */
  .promo-rules {
    padding: 4rem 0;
    background-color: var(--gray);
  }

  .rules-content {
    max-width: 900px;
    margin: 0 auto;
  }

  .rules-list {
    margin-top: 2rem;
  }

  .rule-item {
    display: flex;
    margin-bottom: 1.5rem;
  }

  .rule-item i {
    color: var(--success);
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 5px;
  }

  .rule-item h3 {
    margin-bottom: 0.5rem;
  }

  /* Newsletter Section */
  .newsletter {
    padding: 4rem 0;
    background-color: var(--secondary);
    color: var(--light);
  }

  .newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .newsletter-form {
    margin-top: 2rem;
  }

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

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

  .form-group input[type="email"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
  }

  .form-group.checkbox {
    display: flex;
    align-items: flex-start;
  }

  .form-group.checkbox input {
    margin-top: 5px;
    margin-right: 10px;
  }

  .newsletter .cta-button {
    margin-top: 1rem;
  }

  /* Media Queries */
  @media (min-width: 768px) {
    .promotions-grid {
      grid-template-columns: repeat(2, 1fr);
    }

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

    .bundle-products {
      flex-direction: row;
      justify-content: center;
      align-items: center;
    }

    .bundle-product {
      margin: 0 10px;
    }

    .bundle-plus {
      margin: 0 15px;
    }
  }

  @media (min-width: 1024px) {
    .promotions-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .hero-section {
      height: 500px;
    }

    h1 {
      font-size: 3rem;
    }

    h2 {
      font-size: 2.5rem;
    }
  }
