#fw-section-custom-html-9f5678f8-d968-4b76-9388-cbb0f6ff773f {


        body {
            background-color: #fff;
            color: #1e1e1e;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }
        h1 {
            text-transform: uppercase;
            margin-bottom: 40px;
        }
        .review-form {
            margin-bottom: 80px;
        }
        .form-group {
            margin-bottom: 25px;
        }
        label {
            display: block;
            font-size: 12px;
            text-transform: uppercase;
        
            margin-bottom: 8px;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            background: #fff;
       
        }
        textarea {
            height: 120px;
            resize: vertical;
        }
        button {
            background: #1e1e1e;
            color: #fff;
            border: none;
            padding: 15px 40px;
     
            text-transform: uppercase;
          
            cursor: pointer;
            transition: background 0.3s;
        }
        button:hover {
            background: #333;
        }
        .media-upload {
            margin-top: 10px;
        }
        .media-upload input[type="file"] {
            display: none;
        }
        .media-upload label {
            display: inline-block;
            padding: 12px 20px;
            background: #f5f5f5;
            border: 1px solid #ddd;
            cursor: pointer;
            transition: all 0.3s;
        }
        .media-upload label:hover {
            background: #eee;
        }
        .reviews-section {
            margin-top: 80px;
        }
        .review-card {
            border: none;
            padding: 40px;
            margin-bottom: 30px;
            background: #fafafa;
            transition: transform 0.3s ease;
        }
        .review-card:hover {
            transform: translateY(-5px);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }
        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #666;
            text-transform: uppercase;
        }
        .reviewer-details {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .reviewer-name {
            font-size: 16px;
            text-transform: uppercase;
     
            font-weight: 500;
        }
        .review-date {
            color: #666;
            font-size: 14px;
        }
        .verified-badge {
            display: flex;
            align-items: center;
            gap: 4px;
            
            color: #2e7d32;
            background: #e8f5e9;
            padding: 2px 8px;
            border-radius: 4px;
            margin-top: 2px;
        }
        .verified-badge svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }
        .star-rating {
          
            color: #1e1e1e;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }
        .review-text {
            font-size: 15px;
            line-height: 1.8;
            color: #444;
            margin-bottom: 25px;
            padding: 0 10px;
        }
        .review-media {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 20px;
            padding: 5px;
        }
        .review-media img, .review-media video {
            width: 100%;
            height: 150px;
            object-fit: cover;
            transition: transform 0.3s ease;
            cursor: pointer;
        }
        .review-media video {
            object-fit: contain;
            background: #f5f5f5;
        }
        .review-media img:hover, .review-media video:hover {
            transform: scale(1.05);
        }
        .product-tag {
            display: inline-block;
            background: #f0f0f0;
            padding: 5px 12px;
            border-radius: 4px;
          
            text-transform: uppercase;
          
            margin-bottom: 15px;
            color: #666;
        }
        .product-tag:hover {
            background: #e0e0e0;
        }
        /* Modal styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            padding: 20px;
            box-sizing: border-box;
        }
        .modal-content {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .modal-content img {
            max-width: 90%;
            max-height: 90vh;
            object-fit: contain;
        }
        .modal-content video {
            max-width: 90%;
            max-height: 90vh;
            width: auto;
            height: auto;
        }
        .modal img, .modal video {
            display: block;
            margin: auto;
        }
        .modal-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: #fff;
            font-size: 30px;
            font-weight: bold;
            cursor: pointer;
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
            z-index: 1001;
        }
        .modal-close:hover {
            background: rgba(0, 0, 0, 0.8);
        }
        @keyframes zoom {
            from {transform: scale(0)}
            to {transform: scale(1)}
        }
        .modal-content {
            animation-name: zoom;
            animation-duration: 0.3s;
        }
        @media (max-width: 768px) {
            .container {
                margin: 20px auto;
                padding: 0 15px;
            }
            .review-card {
                padding: 20px;
                margin-bottom: 20px;
            }
            .review-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
                padding-bottom: 0;
            }
            .reviewer-info {
                width: 100%;
            }
            .star-rating {
                margin-bottom: 10px;
            }
            .review-media {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
                padding: 0;
            }
            .review-media img, .review-media video {
                height: 120px;
            }
            .modal-content {
                margin-top: 20px;
                width: 95%;
            }
            .modal-close {
                top: 10px;
                right: 20px;
                
            }
            .review-text {
                line-height: 1.6;
                padding: 0;
            }
            .reviewer-avatar {
                width: 40px;
                height: 40px;
            }
            .product-tag {
                padding: 4px 10px;
            }
            .verified-badge {
                font-size: 11px;
                padding: 2px 6px;
            }
        }

        @media (max-width: 480px) {
            .container {
                margin: 15px auto;
                padding: 0 10px;
            }
            .review-card {
                padding: 15px;
                margin-bottom: 15px;
            }
            .review-media {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .review-media img, .review-media video {
                height: 100px;
            }
            .form-group {
                margin-bottom: 15px;
            }
            input, textarea, select {
                padding: 10px;
                font-size: 14px;
            }
            button {
                width: 100%;
                padding: 12px;
            }
            .media-upload label {
                width: 100%;
                text-align: center;
                padding: 10px;
            }
            .reviewer-info {
                gap: 10px;
            }
            .reviewer-avatar {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
            .review-text {
                font-size: 13px;
                line-height: 1.5;
            }
        }
        .sort-section {
            margin: 30px 0;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .sort-label {
            font-size: 14px;
            text-transform: uppercase;
            color: #666;
        }
        .sort-select {
            padding: 8px 15px;
            border: 1px solid #ddd;
            background: #fff;
            font-size: 14px;
            min-width: 200px;
        }
        @media (max-width: 768px) {
            .sort-section {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .sort-select {
                width: 100%;
            }
        }
        .notification-popup {
            display: none;
            position: fixed;
            top: 20px;
            right: 20px;
            background: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border-radius: 8px;
            padding: 20px;
            max-width: 320px;
            z-index: 1000;
            animation: slideIn 0.3s ease-out;
        }
        .notification-popup.show {
            display: block;
        }
        .notification-content {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .notification-icon {
            background: #e8f5e9;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .notification-icon svg {
            width: 24px;
            height: 24px;
            fill: #2e7d32;
        }
        .notification-text {
            flex-grow: 1;
        }
        .notification-title {
            color: #1e1e1e;
            margin-bottom: 4px;
            font-weight: 500;
        }
        .notification-message {
            color: #666;
            line-height: 1.4;
        }
        .notification-close {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #666;
            border-radius: 50%;
        }
        .notification-close:hover {
            background: #f5f5f5;
        }
        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        @keyframes slideOut {
            from {
                transform: translateX(0);
                opacity: 1;
            }
            to {
                transform: translateX(100%);
                opacity: 0;
            }
        }
}
#fw-section-custom-html-b3c7f825-8b9b-4525-9d0e-3bbf53146419 {

body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f9f9f9;
      color: #333;
      margin: 0;
      padding: 20px;
    }

    h1 {
      text-align: center;
      color: #222;
    }

    p.intro {
      text-align: center;
      font-size: 1.1em;
      max-width: 800px;
      margin: 10px auto 30px auto;
    }

    h2 {
      color: #0077cc;
      margin-top: 60px;
    }

    .note {
      font-size: 0.9em;
      color: #555;
      text-align: center;
      margin-top: -20px;
      margin-bottom: 50px;
    }

    .table-container {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      margin-bottom: 40px;
    }

    table {
      width: 100%;
      min-width: 600px; /* Ensures table doesn't collapse on small screens */
      border-collapse: collapse;
      background-color: white;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    thead {
      background-color: #0077cc;
      color: white;
    }

    tbody tr:nth-child(even) {
      background-color: #f2f2f2;
    }

    th, td {
      padding: 14px;
      text-align: center;
    }

    th:first-child,
    td:first-child {
      text-align: left;
      font-weight: 600;
    }
}


#fw-section-rich-text-8590db23-c407-4bf4-9aef-16f7a9d7d15d {

.rich-text__inner{
 padding: 0 20px;
}
}
#fw-section-featured-collection-0 {

.collection {
  padding: 0 20px;
}
.tile__price--offer {
  text-decoration: line-through 2px;
}
}
#fw-section-rich-text-6caef3ff-a1e7-43ea-833e-2131a0e30091 {

.features-section {
  padding: 0 20px;
}
}
#fw-section-custom-html-9b4045a4-e5e0-41df-a1fa-ab2639b5f245 {

.features {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 40px;
      padding: 40px 20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #222;
      background-color: transparent;
    }

    .feature {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: 180px;
      flex: 1 1 150px;
    }

    .feature img {
      width: 48px;
      height: 48px;
      margin-bottom: 12px;
    }

    /* Specific Icon Colors via CSS filters */
    .icon-orange {
      filter: invert(61%) sepia(74%) saturate(1016%) hue-rotate(357deg) brightness(102%) contrast(93%);
    }

    .icon-gold {
      filter: invert(79%) sepia(86%) saturate(656%) hue-rotate(5deg) brightness(100%) contrast(92%);
    }

    .icon-green {
      filter: invert(51%) sepia(62%) saturate(342%) hue-rotate(83deg) brightness(88%) contrast(86%);
    }

    .feature-title {
      font-size: 1rem;
      font-weight: 600;
      line-height: 1.4;
    }

    @media (max-width: 600px) {
      .features {
        gap: 30px;
        padding: 20px 10px;
      }

      .feature-title {
        font-size: 0.95rem;
      }

      .feature img {
        width: 40px;
        height: 40px;
      }
    }
}