/*
      Theme Name: My Theme
      Template: twentytwentyfive
     */
     @import url("../twentytwentyfive/style.css");
     @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');


     /* Футер */
     .custom-footer {
         font-family: 'Roboto', sans-serif;
         font-size: 13px;
         background: #222222;
         color: #ffffff;
         text-align: center;
         padding: 20px;
     }
     .footer-menu {
         display: flex;
         justify-content: center;
         gap: 15px;
     }
     .footer-menu a {
         color: #ffffff;
         text-decoration: none;
     }

     /* Главная страница */
     .content-area {
         max-width: 1200px;
         margin: 0 auto;
         padding: 0px;
     }
     .featured-products h2 {
         font-family: 'Roboto', sans-serif;
         font-size: 24px;
         text-align: center;
     }

     /* Мобильная адаптация */
     @media (max-width: 767px) {
         .custom-header {
             min-height: 70px;
             flex-direction: column;
             gap: 10px;
         }
         .nav-menu {
             flex-direction: column;
             align-items: center;
         }
     }