/* Spice Pages Specific Styles */

:root {
    --lecha-green: #008f39;
    --lecha-orange: #ff9900;
    --lecha-light-green: #a3d39c;
    --lecha-light-orange: #ffcc80;
    --lecha-dark-green: #006128;
    --lecha-dark-orange: #cc7a00;
  }
  
  /* Hero Section for Spices Page */
  .spice-hero {
    background-image: linear-gradient(rgba(173, 125, 21, 0.6), rgba(0, 0, 0, 0.6)), url("images/spices/1.jpg");
    padding: 120px 8%;
  }
  
  .brand-logo {
    max-width: 300px;
    margin-bottom: 30px;
  }
  
  .brand-logo img {
    width: 100%;
    height: auto;
  }
  
  .spice-hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
  }
  
  .spice-hero p {
    max-width: 600px;
    margin-bottom: 30px;
    font-size: 1.2rem;
    color: white;
  }
  
  .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .cta-button {
    display: inline-block;
    background-color: var(--lecha-orange);
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  .cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--lecha-green);
    transition: left 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
  }
  
  .cta-button:hover {
    color: white;
  }
  
  .cta-button:hover::before {
    left: 0;
  }
  
  .cta-button-outline {
    background-color: transparent;
    border: 2px solid var(--lecha-orange);
    color: white;
  }
  
  .cta-button-outline::before {
    background-color: var(--lecha-orange);
  }
  
  /* Accessibility: Add visible focus styles and improve color contrast for key text */
  a, button, .cta-button, .submit-button, .featured-button, .product-link, .view-details, .social-icon {
    outline: none;
    transition: box-shadow 0.2s, outline 0.2s;
  }
  a:focus, button:focus, .cta-button:focus, .submit-button:focus, .featured-button:focus, .product-link:focus, .view-details:focus, .social-icon:focus {
    outline: 2px solid var(--lecha-orange);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.2);
  }

  .product-description, .product-meta, .category-tabs li, .featured-content p, .booking-form label, .chef-description, .testimonial-content p, .tab-pane p, .tab-pane li {
    color: #222;
  }

  /* Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Section Header */
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-header h2 {
    color: var(--lecha-green);
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
  }
  
  .line-decoration {
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--lecha-orange);
    margin: 15px auto 30px;
    position: relative;
  }
  
  .line-decoration::before,
  .line-decoration::after {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--lecha-orange);
    transition: width 1s ease;
  }
  
  .line-decoration::before {
    left: 0;
  }
  
  .line-decoration::after {
    right: 0;
  }
  
  .line-decoration.animate-line::before,
  .line-decoration.animate-line::after {
    width: 100%;
  }
  
  /* Featured Products Section */
  .featured-products {
    padding: 80px 0;
    background-color: #f9f9f9;
  }
  
  .featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
  
  .featured-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  .featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .featured-image {
    position: relative;
    height: 250px;
    overflow: hidden;
  }
  
  .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  .featured-card:hover .featured-image img {
    transform: scale(1.05);
  }
  
  .featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--lecha-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
  }
  
  .featured-content {
    padding: 25px;
    text-align: center;
  }
  
  .featured-content h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: var(--lecha-green);
  }
  
  .featured-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .featured-price {
    font-weight: 700;
    color: var(--lecha-orange);
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .featured-button {
    display: inline-block;
    background-color: var(--lecha-green);
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
  }
  
  .featured-button:hover {
    background-color: var(--lecha-dark-green);
  }
  
  /* Category Navigation */
  .category-nav {
    background-color: white;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 80px;
    z-index: 90;
  }
  
  .category-tabs {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
  }
  
  .category-tabs li {
    padding: 15px 30px;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
  }
  
  .category-tabs li:hover {
    color: var(--lecha-green);
  }
  
  .category-tabs li.active {
    color: var(--lecha-green);
  }
  
  .category-tabs li.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--lecha-orange);
  }
  
  /* Products Section */
  .products-section {
    padding: 60px 0;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
  }
  
  /* Product Card */
  .product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
  }
  
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--lecha-green);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
  }
  
  .product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
  }
  
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  .product-card:hover .product-image img {
    transform: scale(1.05);
  }
  
  .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 143, 57, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  .product-card:hover .product-overlay {
    opacity: 1;
  }
  
  .view-details {
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s;
  }
  
  .product-card:hover .view-details {
    transform: translateY(0);
  }
  
  .view-details:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }
  
  .product-info {
    padding: 20px;
  }
  
  .product-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--lecha-green);
  }
  
  .product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
  }
  
  .product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .product-price {
    font-weight: 700;
    color: var(--lecha-orange);
    font-size: 1.1rem;
  }
  
  .product-link {
    width: 36px;
    height: 36px;
    background-color: var(--lecha-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
  }
  
  .product-link:hover {
    background-color: var(--lecha-dark-green);
  }
  
  /* Masterclass Section */
  .masterclass-section {
    padding: 80px 0;
    background-color: #f9f9f9;
  }
  
  .masterclass-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .masterclass-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .masterclass-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .masterclass-content h2 {
    color: var(--lecha-green);
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .masterclass-content p {
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .masterclass-features {
    margin-bottom: 30px;
    padding-left: 0;
  }
  
  .masterclass-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    list-style: none;
  }
  
  .masterclass-features li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--lecha-orange);
  }
  
  /* Booking Form */
  .booking-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .booking-form h3 {
    color: var(--lecha-green);
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
    margin-bottom: 18px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }
  
  .form-group.full-width {
    grid-column: 1 / -1;
  }
  
  @media (max-width: 700px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 14px 0;
    }
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--lecha-green);
    outline: none;
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  .submit-button {
    background-color: var(--lecha-orange);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
  }
  
  .submit-button:hover {
    background-color: var(--lecha-dark-orange);
    transform: translateY(-3px);
  }
  
  /* Chef Booking Section */
  .chef-booking-section {
    padding: 80px 0;
  }
  
  .chef-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .chef-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
  }
  
  .chef-card:hover {
    transform: translateY(-10px);
  }
  
  .chef-image {
    height: 250px;
    overflow: hidden;
  }
  
  .chef-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  
  .chef-card:hover .chef-image img {
    transform: scale(1.05);
  }
  
  .chef-info {
    padding: 25px;
  }
  
  .chef-info h3 {
    color: var(--lecha-green);
    margin-bottom: 10px;
    font-size: 1.3rem;
  }
  
  .chef-specialty {
    color: var(--lecha-orange);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9rem;
  }
  
  .chef-description {
    color: #666;
    line-height: 1.6;
  }
  
  .chef-booking-form-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Testimonials Section */
  .testimonials-section {
    padding: 80px 0;
    background-color: #f9f9f9;
  }
  
  .testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
  }
  
  .testimonial-content {
    margin-bottom: 20px;
  }
  
  .testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    position: relative;
  }
  
  .testimonial-content p::before,
  .testimonial-content p::after {
    content: '"';
    color: var(--lecha-orange);
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
  }
  
  .author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
  }
  
  .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .author-info h4 {
    margin-bottom: 5px;
    color: var(--lecha-green);
  }
  
  .author-info p {
    color: #666;
    font-size: 0.9rem;
  }
  
  /* Breadcrumb */
  .breadcrumb {
    background-color: #f5f5f5;
    padding: 15px 0;
  }
  
  .breadcrumb ul {
    display: flex;
    padding: 0;
    margin: 0;
  }
  
  .breadcrumb li {
    font-size: 0.9rem;
    color: #666;
  }
  
  .breadcrumb li:not(:last-child)::after {
    content: "/";
    margin: 0 10px;
    color: #ccc;
  }
  
  .breadcrumb a {
    color: #666;
    transition: color 0.3s;
  }
  
  .breadcrumb a:hover {
    color: var(--lecha-green);
  }
  
  .breadcrumb li:last-child {
    color: var(--lecha-orange);
    font-weight: 500;
  }
  
  /* Product Detail Page */
  .product-detail {
    padding: 60px 0;
  }
  
  .product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  
  /* Product Images */
  .product-images {
    position: relative;
  }
  
  .main-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  
  .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
  }
  
  .image-thumbnails {
    display: flex;
    gap: 15px;
  }
  
  .thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
  }
  
  .thumbnail:hover {
    opacity: 0.9;
    transform: translateY(-3px);
  }
  
  .thumbnail.active {
    opacity: 1;
    box-shadow: 0 0 0 2px var(--lecha-orange);
  }
  
  .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Product Details */
  .product-brand {
    margin-bottom: 20px;
  }
  
  .product-brand-logo {
    height: 60px;
    width: auto;
  }
  
  .product-category {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .product-title {
    font-size: 2.2rem;
    color: var(--lecha-green);
    margin-bottom: 15px;
  }
  
  .product-price {
    font-size: 1.5rem;
    color: var(--lecha-orange);
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .product-description {
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .product-features {
    margin-bottom: 30px;
  }
  
  .product-features h3,
  .product-uses h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--lecha-green);
  }
  
  .product-features ul {
    padding-left: 20px;
  }
  
  .product-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 5px;
  }
  
  .product-uses {
    margin-bottom: 30px;
  }
  
  /* Quantity Selector */
  .product-quantity {
    margin-bottom: 30px;
  }
  
  .product-quantity label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
  }
  
  .quantity-selector {
    display: flex;
    align-items: center;
    max-width: 150px;
  }
  
  .quantity-btn {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .quantity-btn:hover {
    background-color: #e0e0e0;
  }
  
  .quantity-selector input {
    width: 60px;
    height: 40px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 1rem;
    margin: 0 5px;
  }
  
  /* Product Actions */
  .product-actions {
    display: flex;
    gap: 15px;
  }
  
  .whatsapp-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .whatsapp-order-btn:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
  }
  
  .whatsapp-order-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
  }
  
  /* Product Tabs */
  .product-tabs {
    padding: 60px 0;
    background-color: #f9f9f9;
  }
  
  .tab-header {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
  }
  
  .tab-btn {
    padding: 15px 30px;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
  }
  
  .tab-btn:hover {
    color: var(--lecha-green);
  }
  
  .tab-btn.active {
    color: var(--lecha-green);
  }
  
  .tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--lecha-orange);
  }
  
  .tab-pane {
    display: none;
    animation: fadeIn 0.5s;
  }
  
  .tab-pane.active {
    display: block;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .tab-pane p {
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .tab-pane ul {
    padding-left: 20px;
    margin-bottom: 15px;
  }
  
  .tab-pane li {
    margin-bottom: 8px;
  }
  
  .tab-pane h4 {
    color: var(--lecha-green);
    margin: 25px 0 15px;
    font-size: 1.2rem;
  }
  
  .tab-pane ol {
    padding-left: 20px;
    margin-bottom: 25px;
  }
  
  /* Related Products */
  .related-products {
    padding: 80px 0;
  }
  
  .related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  /* Masterclass Promo */
  .masterclass-promo {
    padding: 80px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("images/spices/masterclass.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
  }
  
  .promo-content {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .promo-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .promo-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
  }
  
  /* Footer Customization */
  footer {
    background-color: var(--lecha-dark-green);
  }
  
  .footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
  }
  
  .social-icon {
    background-color: var(--lecha-orange);
  }
  
  .social-icon:hover {
    background-color: var(--lecha-light-orange);
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .product-detail-grid,
    .masterclass-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .main-image {
      height: 350px;
    }
  
    .featured-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
  }
  
  @media (max-width: 768px) {
    .spice-hero {
      padding: 80px 5%;
    }
  
    .spice-hero h2 {
      font-size: 2.2rem;
    }
  
    .category-tabs {
      flex-wrap: wrap;
    }
  
    .category-tabs li {
      padding: 10px 20px;
    }
  
    .tab-header {
      flex-wrap: wrap;
    }
  
    .tab-btn {
      padding: 10px 20px;
    }
  
    .form-grid {
      grid-template-columns: 1fr;
    }
  
    .form-group.full-width {
      grid-column: span 1;
    }
  
    .hero-buttons {
      flex-direction: column;
    }
  
    .hero-buttons .cta-button {
      width: 100%;
    }
  }
  
  @media (max-width: 576px) {
    .products-grid,
    .related-products-grid,
    .testimonials-slider,
    .chef-grid {
      grid-template-columns: 1fr;
    }
  
    .main-image {
      height: 300px;
    }
  
    .image-thumbnails {
      justify-content: center;
    }
  
    .brand-logo {
      max-width: 220px;
    }
  }

  @media (max-width: 400px) {
    section {
      padding: 50px 3%;
    }
    .spice-hero h2 {
      font-size: 1.3rem;
    }
    .cta-button, .submit-button, .featured-button {
      padding: 12px 18px;
      font-size: 0.95rem;
    }
  }
  /* Hero CTA Buttons and Animation */

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-button,
.cta-button-outline {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: background 0.4s, color 0.4s;
  cursor: pointer;
}

.cta-button {
  background-color: var(--lecha-orange);
  color: #fff;
  border: none;
}

.cta-button-outline {
  background: transparent;
  border: 2px solid var(--lecha-orange);
  color: #fff;
}

.cta-button:hover,
.cta-button:focus {
  background-color: var(--lecha-green);
  color: #fff;
}

.cta-button-outline:hover,
.cta-button-outline:focus {
  background-color: var(--lecha-orange);
  color: #fff;
}

.animate-hero {
  opacity: 0;
  transform: translateY(60px) scale(0.98);
  transition: opacity 0.8s, transform 0.8s;
}