/* Start custom CSS for wp-widget-custom_html, class: .elementor-element-b4edd6b */body {
     font-family: 'Arial', sans-serif;
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     background-color: #f5f5f5;
 }

 main {
     padding: 2rem;
     text-align: center;
 }

 .shop-header {
     margin-bottom: 2rem;
 }

 .shop-header h1 {
     color: #001f3f;
     font-size: 2.5rem;
     margin-bottom: 0.5rem;
 }

 .shop-header p {
     color: #333333;
     font-size: 1.2rem;
 }

 .shop-items {
     display: flex;
     justify-content: space-around;
     flex-wrap: wrap;
     gap: 2rem;
 }

 .shop-item {
     background-color: #ffffff;
     border: 1px solid #cccccc;
     border-radius: 10px;
     padding: 1rem;
     width: 200px;
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
 }

 .shop-item img {
     width: 100%;
     height: auto;
     border-bottom: 1px solid #cccccc;
     margin-bottom: 1rem;
 }

 .shop-item h2 {
     color: #001f3f;
     font-size: 1.5rem;
     margin-bottom: 0.5rem;
 }

 .shop-item p {
     color: #333333;
     font-size: 1.2rem;
     margin-bottom: 1rem;
 }

 .shop-item button {
     background-color: #007bff;
     color: #ffffff;
     border: none;
     padding: 0.5rem 1rem;
     border-radius: 5px;
     cursor: pointer;
 }

 footer {
     background-color: #001f3f;
     color: #ffffff;
     text-align: center;
     padding: 1rem 0;
     position: fixed;
     width: 100%;
     bottom: 0;
 }/* End custom CSS */