    /* Reset styles only for footer elements */
    .piccaso-footer *,
    .piccaso-footer *::before,
    .piccaso-footer *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Arial', sans-serif;
    }
    
    /* Footer specific styles with namespaced classes */
    .piccaso-footer {
      background-color: #222;
      color: white;
      padding-top: 30px;
      position: relative;
      overflow: hidden;
      width: 100%;
    }
    
    /* Decorative background pattern inspired by the logo */
    .piccaso-footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 30%, rgba(177, 210, 53, 0.05) 0%, transparent 50%),
                  radial-gradient(circle at 80% 70%, rgba(177, 210, 53, 0.05) 0%, transparent 50%);
      z-index: 0;
    }
    
    .piccaso-footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }
    
    .piccaso-footer-top {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }
    
    .piccaso-footer-logo {
      margin-bottom: 20px;
    }
    
    .piccaso-footer-logo img {
      width: 150px;
      height: auto;
      filter: drop-shadow(0 0 5px rgba(177, 210, 53, 0.5));
	  margin-right:20px; 
    }
    
    .piccaso-footer-logo p {
      border-left: 3px solid #b1d235;
      padding-left: 10px;
      margin-top: 15px;
      font-style: italic;
      color: #e0e0e0;
    }
    
    .piccaso-footer-column {
      flex: 1;
      min-width: 200px;
      margin-bottom: 20px;
      padding-right: 20px;
      position: relative;
    }
    
    /* Decorative element for each column */
    .piccaso-footer-column::before {
      content: '';
      position: absolute;
      top: -10px;
      left: 0;
      width: 40px;
      height: 4px;
      background: linear-gradient(to right, #b1d235, transparent);
      border-radius: 2px;
    }
    
    .piccaso-footer-heading {
      font-size: 18px;
      margin-bottom: 15px;
      position: relative;
      padding-bottom: 10px;
      color: #fff;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    
    .piccaso-footer-heading::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 40px;
      height: 3px;
      background: linear-gradient(to right, #b1d235, #7a9523); /* Gradient effect */
      border-radius: 3px;
    }
    
    .piccaso-footer-links ul {
      list-style: none;
    }
    
    .piccaso-footer-links li {
      margin-bottom: 12px;
      transition: transform 0.3s;
    }
    
    .piccaso-footer-links li:hover {
      transform: translateX(5px);
    }
    
    .piccaso-footer-links a {
      color: #e0e0e0;
      text-decoration: none;
      transition: all 0.3s;
      position: relative;
      padding-left: 15px;
    }
    
    .piccaso-footer-links a::before {
      content: '›';
      position: absolute;
      left: 0;
      color: #b1d235;
      font-size: 18px;
      line-height: 1;
      transition: transform 0.3s;
    }
    
    .piccaso-footer-links a:hover {
      color: #b1d235;
    }
    
    .piccaso-footer-links a:hover::before {
      transform: translateX(3px);
    }
    
    .piccaso-contact-info p {
      margin-bottom: 12px;
      display: flex;
      align-items: flex-start;
    }
    
    .piccaso-contact-info i {
      margin-right: 10px;
      color: #b1d235;
      width: 20px;
      text-align: center;
    }
    
    .piccaso-social-icons {
      display: flex;
      margin-top: 20px;
    }
    
    .piccaso-social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, #333, #444);
      color: white;
      margin-right: 12px;
      transition: all 0.3s;
      text-decoration: none;
      box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    }
    
    .piccaso-social-icons a:hover {
      background: linear-gradient(135deg, #b1d235, #7a9523);
      transform: translateY(-3px);
      box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    }
    
    .piccaso-newsletter-form {
      display: flex;
      margin-top: 15px;
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .piccaso-newsletter-form input {
      flex: 1;
      padding: 12px 15px;
      border: none;
      outline: none;
      background-color: #333;
      color: #fff;
      border: 1px solid #444;
      transition: all 0.3s;
    }
    
    .piccaso-newsletter-form input:focus {
      background-color: #3a3a3a;
      border-color: #b1d235;
    }
    
    .piccaso-newsletter-form input::placeholder {
      color: #aaa;
    }
    
    .piccaso-newsletter-form button {
      background: linear-gradient(to right, #b1d235, #7a9523);
      color: #222;
      border: none;
      padding: 12px 20px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .piccaso-newsletter-form button:hover {
      background: linear-gradient(to right, #c1e245, #8aa533);
      transform: translateX(2px);
    }
    
    .piccaso-footer-bottom {
      position: relative;
      background-color: #1a1a1a;
      padding: 20px 0;
      text-align: center;
      font-size: 14px;
      color: #888;
    }
    
    .piccaso-footer-bottom::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(177, 210, 53, 0.5), transparent);
    }
    
    .piccaso-footer-bottom a {
      color: #aaa;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .piccaso-footer-bottom a:hover {
      color: #b1d235;
    }
    
    .piccaso-products-row {
      display: flex;
      justify-content: center;
      background: linear-gradient(to right, #333, #444, #333);
      padding: 18px 0;
      margin-bottom: 30px;
      position: relative;
      box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    }
    
    /* Decorative line above products row */
    .piccaso-products-row::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(to right, transparent, #b1d235, transparent);
    }
    
    .piccaso-product-tag {
      margin: 0 30px;
      font-weight: bold;
      font-size: 16px;
      color: #fff;
      position: relative;
      padding: 5px 0;
      letter-spacing: 1px;
      transition: all 0.3s;
    }
    
    .piccaso-product-tag:hover {
      color: #b1d235;
      transform: translateY(-2px);
    }
    
    .piccaso-product-tag:not(:last-child)::after {
      content: '•';
      position: absolute;
      right: -30px;
      color: #b1d235;
      font-size: 20px;
      top: 50%;
      transform: translateY(-50%);
    }
    
    /* Decorative floral element inspired by logo */
    .piccaso-decorative-element {
      position: absolute;
      width: 120px;
      height: 120px;
      opacity: 0.05;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23b1d235' d='M50 0 C60 30 70 40 100 50 C70 60 60 70 50 100 C40 70 30 60 0 50 C30 40 40 30 50 0'/%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat;
      z-index: 0;
    }
    
    .piccaso-decorative-element.top-right {
      top: 30px;
      right: 30px;
    }
    
    .piccaso-decorative-element.bottom-left {
      bottom: 80px;
      left: 30px;
      transform: rotate(45deg);
    }
    
    /* Certificate section */
    .piccaso-certificates {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px 0;
      margin-top: 20px;
      border-top: 1px dashed rgba(177, 210, 53, 0.2);
    }
    
    .piccaso-certificates p {
      margin-right: 15px;
      font-size: 14px;
      color: #aaa;
    }
    
    .piccaso-certificate-icons {
      display: flex;
    }
    
    .piccaso-certificate-icons span {
      display: inline-block;
      background-color: #333;
      color: #b1d235;
      padding: 5px 10px;
      margin: 0 5px;
      border-radius: 3px;
      font-size: 12px;
      font-weight: bold;
      border: 1px solid rgba(177, 210, 53, 0.3);
    }
    
    /* Media Queries */
    @media screen and (max-width: 1024px) {
      .piccaso-footer-top {
        justify-content: flex-start;
      }
      
      .piccaso-footer-column {
        flex: 0 0 33.33%;
        margin-bottom: 30px;
      }
      
      .piccaso-decorative-element {
        width: 80px;
        height: 80px;
      }
    }
    
    @media screen and (max-width: 768px) {
      .piccaso-footer-column {
        flex: 0 0 50%;
      }
      
      .piccaso-footer-logo {
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 40px;
      }
      
      .piccaso-footer-logo p {
        border-left: none;
        border-bottom: 3px solid #b1d235;
        padding-left: 0;
        padding-bottom: 10px;
        text-align: center;
      }
      
      .piccaso-products-row {
        flex-wrap: wrap;
      }
      
      .piccaso-product-tag {
        margin: 8px 20px;
      }
      
      .piccaso-product-tag:not(:last-child)::after {
        display: none;
      }
      
      .piccaso-decorative-element {
        opacity: 0.03;
      }
      
      .piccaso-footer-column::before {
        width: 60px;
      }
    }
    
    @media screen and (max-width: 480px) {
      .piccaso-footer-column {
        flex: 0 0 100%;
        padding-right: 0;
      }
      
      .piccaso-newsletter-form {
        flex-direction: column;
      }
      
      .piccaso-newsletter-form input {
        margin-bottom: 10px;
        border-radius: 4px;
      }
      
      .piccaso-newsletter-form button {
        border-radius: 4px;
      }
      
      .piccaso-social-icons {
        justify-content: center;
      }
      
      .piccaso-footer-heading {
        text-align: center;
      }
      
      .piccaso-footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
      }
      
      .piccaso-footer-links ul {
        text-align: center;
      }
      
      .piccaso-footer-links a {
        padding-left: 0;
      }
      
      .piccaso-footer-links a::before {
        display: none;
      }
      
      .piccaso-contact-info p {
        justify-content: center;
      }
      
      .piccaso-footer-column::before {
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        background: linear-gradient(to right, transparent, #b1d235, transparent);
      }
      
      .piccaso-certificates {
        flex-direction: column;
      }
      
      .piccaso-certificates p {
        margin-right: 0;
        margin-bottom: 10px;
      }
    }