
  :root {
    --primary: #ffd814;
    --secondary: #131931;
    --tertiary: #232f3e;
    --white: #ffffff;
    --accent: #ffe200;
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  body {
    background-color: var(--white);
    color: var(--secondary);
    line-height: 1.6;
  }
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  /* Header */
  header {
    background-color: var(--secondary);
    color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
  }
  .logo span {
    color: var(--white);
  }
  nav ul {
    display: flex;
    list-style: none;
  }
  nav ul li {
    margin-left: 20px;
  }
  nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  nav ul li a:hover {
    color: var(--primary);
  }
  .mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--white);
  }
  /* Hero Section */
  .hero {
    background: linear-gradient(
        rgba(19, 25, 49, 0.8),
        rgba(19, 25, 49, 0.9)
      ),
      url("https://via.placeholder.com/1200x600") no-repeat center
        center/cover;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
  }
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  .hero p {
    font-size: 1.2rem;
    max-width: 710px;
    margin: 0 auto 30px;
  }
  .btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--secondary);
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
  }
  .btn:hover {
    background-color: var(--accent);
  }
  /* Products Section */
  .products {
    padding: 20px 0;
    background-color: #f8f9fa;
  }
  .section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--tertiary);
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
  }
  .product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
  }
  .product-card:hover {
    transform: translateY(-10px);
  }
  .product-img {
    height: 200px;
    width: 100%;
    object-fit: contain;
    padding: 5px;
  }
  .product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  .product-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--tertiary);
  }
  .product-description {
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
  .product-price {
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 15px;
  }
  .product-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .btn-view-more {
    background-color: var(--tertiary);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
  }
  .btn-view-more:hover {
    background-color: var(--secondary);
  }
  /* estrellita mejor valorada*/
    .star-container {
        position: absolute;
        display: inline-block;
    }
    .star {
        width: 80px;
        height: 80px;
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
        animation: glow 2s ease-in-out infinite alternate;
    }
    .star-path {
        fill: #FFD700;
        stroke: #FFA500;
        stroke-width: 2;
    }
    .rating-badge {
        position: absolute;
        top: 65px;
        right: -10px;
        background: linear-gradient(45deg, #ff0000, #ff6b6b);
        color: white;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 14px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.3);
        animation: pulse 1.5s ease-in-out infinite;
    }
    @keyframes glow {
        from {
            filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
        }
        to {
            filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
        }
    }
    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.1);
        }
    }
    .star:hover {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }
    .star-container:hover .rating-badge {
        animation: pulse 0.5s ease-in-out infinite;
    }
  /* Modal */
  #modalProductLink {
    background-color: var(--primary);
    padding: 12px 30px;
  }
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
  }
  .modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 700px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  .close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--tertiary);
    transition: color 0.3s;
  }
  .close-modal:hover {
    color: var(--secondary);
  }
  .modal-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--tertiary);
    padding-right: 30px;
  }
  .modal-description {
    margin-bottom: 20px;
    line-height: 1.6;
  }
  .modal-price {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
  }
  .modal-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  /* Why Section */
  .why {
    padding: 40px 0;
  }
  .why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  .why-text h2 {
    margin-bottom: 20px;
    color: var(--tertiary);
  }
  .why-list {
    list-style: none;
  }
  .why-list li {
    margin-bottom: 15px;
    display: block;
    align-items: flex-start;
  }
  .why-list li:before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
  }
  .why-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  .why-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* Banner */
  .banner {
    box-sizing: border-box;
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: antiquewhite;
    max-width: var(--max-width);
    margin: 12px 0px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  }
  .icon {
    flex: 0 0 72px;
    height: 72px;
    width: 72px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: rgba(178, 34, 34, 0.08);
    border: 1px solid rgba(178, 34, 34, 0.12);
  }
  .icon svg {
    width: 44px;
    height: 44px;
  }
  .content {
    flex: 1;
    min-width: 0;
    padding: 20px;
  }
  .title {
    font-weight: 700;
    /*font-size: 1.8rem;*/
    color: rgba(241, 6, 6, 0.68);
    margin: 0 0 6px;
    text-align: center;
  }
  .subtitle {
    margin: 0;
    color: var(--muted);
    line-height: 1.35;
  }
  .bullets {
    margin: 10px 0 0;
    padding-left: 20px;
    color: var(--muted);
  }
  .bullets li {
    margin: 6px 0;
  }
  .actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 16px;
  }
  .cta {
    background: var(--cta-bg);
    color: var(--cta-color);
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
  }
  .soft {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--muted);
    cursor: pointer;
  }
  .dismiss {
    background: transparent;
    border: 0;
    color: rgba(0, 0, 0, 0.5);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
  }
  /* FAQ Section */
  .faq {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  .accordion {
    max-width: 800px;
    margin: 0 auto;
  }
  .accordion-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .accordion-header {
    background-color: var(--tertiary);
    color: var(--white);
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .accordion-header:hover {
    background-color: var(--secondary);
  }
  .accordion-content {
    background-color: var(--white);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .accordion-content.active {
    padding: 20px;
    max-height: 500px;
  }
  /* Footer */
  footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 50px 0 20px;
  }
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-column h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
  }
  .footer-column ul {
    list-style: none;
  }
  .footer-column ul li {
    margin-bottom: 10px;
  }
  .footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-column ul li a:hover {
    color: var(--primary);
  }
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
  }
  .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }
  .footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: var(--primary);
  }
  /* Cookie Banner */
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
  }
  .cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  .cookie-text {
    flex: 1;
    min-width: 300px;
  }
  .cookie-text p {
    margin-bottom: 10px;
  }
  .cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  .cookie-accept {
    background-color: var(--primary);
    color: var(--secondary);
  }
  .cookie-accept:hover {
    background-color: var(--accent);
  }
  .cookie-settings {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
  }
  .cookie-settings:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  /* Cookie Settings Modal */
  .cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    overflow-y: auto;
  }
  .cookie-settings-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  .cookie-settings-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--tertiary);
  }
  .cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
  }
  .cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  .cookie-category-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--tertiary);
  }
  .cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
  }
  .cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  .cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
  }
  .cookie-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
  }
  .cookie-toggle input:checked + .cookie-slider {
    background-color: var(--primary);
  }
  .cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(26px);
  }
  .cookie-category-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .cookie-category-list {
    list-style: none;
    padding-left: 0;
    font-size: 0.85rem;
    color: #777;
  }
  .cookie-category-list li {
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
  }
  .cookie-category-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
  }
  .cookie-settings-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 15px;
  }
  .cookie-settings-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    flex: 1;
  }
  .cookie-save {
    background-color: var(--primary);
    color: var(--secondary);
  }
  .cookie-save:hover {
    background-color: var(--accent);
  }
  .cookie-reject {
    background-color: #f0f0f0;
    color: var(--secondary);
    border: 1px solid #ddd;
  }
  .cookie-reject:hover {
    background-color: #e0e0e0;
  }
  /* Legal Pages */
  .legal-page {
    padding: 80px 0;
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
  }
  .legal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  .legal-content h1 {
    color: var(--tertiary);
    margin-bottom: 20px;
    font-size: 2rem;
  }
  .legal-content h2 {
    color: var(--tertiary);
    margin: 30px 0 15px;
    font-size: 1.5rem;
  }
  .legal-content h3 {
    color: var(--tertiary);
    margin: 20px 0 10px;
    font-size: 1.2rem;
  }
  .legal-content p {
    margin-bottom: 15px;
    line-height: 1.6;
  }
  .legal-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
  }
  .legal-content li {
    margin-bottom: 8px;
  }
  .back-btn {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--tertiary);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  .back-btn:hover {
    color: var(--secondary);
  }
  /* Responsive */
  @media (max-width: 768px) {
    .header-content {
      flex-direction: column;
      text-align: center;
    }
    nav ul {
      display: none;
      margin-top: 20px;
      flex-direction: column;
      width: 100%;
    }
    nav ul.active {
      display: flex;
    }
    nav ul li {
      margin: 10px 0;
    }
    .mobile-menu {
      display: block;
      position: absolute;
      top: 20px;
      right: 20px;
    }
    .hero h1 {
      font-size: 2rem;
    }
    .why-content {
      grid-template-columns: 1fr;
    }
    .products-grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    .modal-content {
      margin: 10% auto;
      width: 95%;
      padding: 20px;
    }
    .modal-actions {
      flex-direction: column;
    }
    .banner {
      display: block;
    }
    .cookie-content {
      flex-direction: column;
      text-align: center;
    }
    .cookie-text {
      min-width: 100%;
    }
    .legal-content {
      padding: 20px;
    }
    .cookie-settings-actions {
      flex-direction: column;
    }
    .cookie-settings-content {
      margin: 10% auto;
      padding: 20px;
    }
  }
  @media (max-width: 480px) {
    .hero {
      padding: 60px 0;
    }
    .hero h1 {
      font-size: 1.8rem;
    }
    .section-title {
      font-size: 1.6rem;
    }
    .products-grid {
      grid-template-columns: 1fr;
    }
    .modal-content {
      margin: 5% auto;
      padding: 15px;
    }
    .banner {
      display: block;
    }
    .cookie-settings-content {
      margin: 5% auto;
      padding: 15px;
    }
  }
