*{margin:0;padding:0;box-sizing:border-box}:root{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;line-height:1.5;font-weight:400;color:#213547;background-color:#fff;font-synthesis:none;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body{margin:0;min-width:320px;min-height:100vh}#root{min-height:100vh}.product-card{display:flex;flex-direction:column;background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 2px 8px #0000001a;cursor:pointer;transition:transform .2s ease,box-shadow .2s ease}.product-card:hover{transform:translateY(-4px);box-shadow:0 4px 16px #00000026}.product-card__image-wrapper{width:100%;height:100%;overflow:hidden;background:#f2f2f2;display:flex;align-items:center;justify-content:center}.product-card__image{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}.product-card:hover .product-card__image{transform:scale(1.05)}.product-card__content{display:flex;flex-direction:column;padding:16px;gap:8px;flex:1}.product-card__title{font-size:16px;font-weight:600;color:#333;margin:0;line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.product-card__price{font-size:20px;font-weight:700;color:#2563eb;margin:0}@media(max-width:768px){.product-card__content{padding:12px}.product-card__title{font-size:14px}.product-card__price{font-size:18px}}.modal{position:fixed;top:0;left:0;width:100%;height:100%;z-index:1000;display:flex;align-items:flex-start;justify-content:flex-end;padding:0}.modal__overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:#0009;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);animation:fadeIn .3s ease}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes slideInRight{0%{transform:translate(100%)}to{transform:translate(0)}}@keyframes slideInBottom{0%{transform:translateY(100%)}to{transform:translateY(0)}}.modal__content{position:relative;background:#fff;border-radius:16px 0 0 16px;width:60%;max-width:90vw;height:100vh;max-height:100vh;overflow-y:auto;box-shadow:-4px 0 20px #0000004d;z-index:1001;animation:slideInRight .4s cubic-bezier(.16,1,.3,1);display:flex;flex-direction:column}.modal__close{position:absolute;top:16px;right:16px;width:40px;height:40px;border:none;background:#ffffffe6;border-radius:50%;font-size:28px;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#333;transition:background .2s ease,transform .2s ease;z-index:1002}.modal__close:hover{background:#fff;transform:scale(1.1)}.modal__close:active{transform:scale(.95)}.modal__body{display:flex;flex-direction:row;gap:32px;padding:24px;flex:1;overflow-y:auto}.modal__image-wrapper{flex:0 0 320px;width:320px;max-height:700px;border-radius:12px;overflow:hidden;background:#f2f2f2;display:flex;align-items:center;justify-content:center;position:sticky;top:0;align-self:flex-start}.modal__image{width:100%;height:100%;object-fit:cover}.modal__info{flex:1;display:flex;flex-direction:column;gap:16px;min-width:0;min-height:0}.modal__title{font-size:28px;font-weight:700;color:#333;margin:0;line-height:1.3;flex-shrink:0}.modal__description{font-size:16px;line-height:1.6;color:#666;margin:0;flex:1}.modal__footer{display:flex;flex-direction:column;gap:20px;padding-top:16px;border-top:1px solid #e5e7eb;flex-shrink:0;margin-top:auto}.modal__price{font-size:32px;font-weight:700;color:#2563eb;margin:0}.modal__buy-button{padding:16px 32px;font-size:18px;font-weight:600;color:#fff;background:#2563eb;border:none;border-radius:8px;cursor:pointer;transition:background .2s ease,transform .2s ease;width:100%;text-transform:uppercase;letter-spacing:.5px}.modal__buy-button:hover{background:#1d4ed8;transform:translateY(-2px)}.modal__buy-button:active{transform:translateY(0)}@media(max-width:1023px){.modal{align-items:flex-end;justify-content:center}.modal__content{width:100%;max-width:100%;height:90vh;max-height:90vh;border-radius:24px 24px 0 0;animation:slideInBottom .4s cubic-bezier(.16,1,.3,1)}.modal__body{flex-direction:column;padding:20px;gap:20px}.modal__image-wrapper{flex:0 0 auto;width:100%;position:static;min-height:auto}.modal__title{font-size:22px}.modal__description{font-size:14px}.modal__footer{flex-direction:column;align-items:stretch}.modal__price{font-size:28px}.modal__buy-button{width:100%;padding:16px}.modal__close{top:12px;right:12px;width:36px;height:36px;font-size:24px}}.search-bar{position:relative;width:100%;max-width:600px;margin:0 auto}.search-bar__input{width:100%;padding:14px 50px 14px 20px;font-size:16px;border:2px solid #e5e7eb;border-radius:12px;outline:none;transition:border-color .2s ease,box-shadow .2s ease;background:#fff;color:#333}.search-bar__input:focus{border-color:#2563eb;box-shadow:0 0 0 3px #2563eb1a}.search-bar__input::placeholder{color:#9ca3af}@media(max-width:768px){.search-bar__input{padding:12px 45px 12px 16px;font-size:14px}}.app{min-height:100vh;background:#f2f2f2;display:flex;flex-direction:column}.app__header{background:#fff;padding:24px;box-shadow:0 2px 4px #0000001a;display:flex;flex-direction:column;align-items:center;gap:20px}.app__title{margin:0;font-size:32px;font-weight:700;color:#333}.app__main{flex:1;max-width:1200px;width:100%;margin:0 auto;padding:40px 20px}.app__products{display:flex;flex-wrap:wrap;gap:24px;justify-content:flex-start}.app__products>*{flex:0 0 calc(25% - 18px);min-width:0}.app__no-products{width:100%;text-align:center;padding:60px 20px;font-size:18px;color:#666}@media(max-width:1024px){.app__products>*{flex:0 0 calc(33.333% - 16px)}}@media(max-width:768px){.app__header{padding:20px 16px;gap:16px}.app__title{font-size:24px}.app__main{padding:24px 16px}.app__products{gap:16px}.app__products>*{flex:0 0 calc(50% - 8px)}}@media(max-width:480px){.app__products>*{flex:0 0 100%}}
