.custom-collection{max-width:1400px;margin:0 auto;padding:0 20px}.custom-collection__header{text-align:center;margin-bottom:40px}.custom-collection__title{font-size:2.5rem;font-weight:700;color:#333;margin-bottom:15px}.custom-collection__description{font-size:1.1rem;color:#666;max-width:600px;margin:0 auto;line-height:1.6}.custom-collection__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:10px;align-items:stretch;justify-items:center;justify-content:center;width:100%}.custom-collection__grid--2-cols{grid-template-columns:repeat(2,minmax(280px,1fr))}.custom-collection__grid--3-cols{grid-template-columns:repeat(3,minmax(280px,1fr))}.custom-collection__grid--4-cols{grid-template-columns:repeat(4,minmax(280px,1fr))}.custom-collection__grid--5-cols{grid-template-columns:repeat(5,minmax(280px,1fr))}.custom-collection__empty{text-align:center;padding:60px 0;color:#666;font-size:1.1rem;grid-column:1 / -1}.custom-product-card{background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 4px 20px #00000014;transition:all .3s ease;position:relative;display:flex;flex-direction:column;height:100%;width:100%;max-width:320px;margin:0 auto}.custom-product-card__image-wrapper{position:relative;overflow:hidden;aspect-ratio:1;flex-shrink:0}.custom-product-card__image{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}.custom-product-card:hover .custom-product-card__image{transform:scale(1.05)}.custom-product-card__link{display:block;text-decoration:none;color:inherit}.custom-product-card__placeholder{width:100%;height:100%;background:#f8f8f8;display:flex;align-items:center;justify-content:center}.custom-product-card__placeholder-svg{width:80%;height:80%;opacity:.3}.custom-product-card__badge{position:absolute;top:12px;left:12px;padding:10px 16px;border-radius:16px;font-size:1.4rem;font-weight:600;text-transform:uppercase;letter-spacing:.5px;z-index:2}.custom-product-card__badge--sale{background:#012f6d;color:#fff}.custom-product-card__badge--sold-out{background:#666;color:#fff}.custom-product-card__content{padding:20px;flex-grow:1;display:flex;flex-direction:column;text-align:center}.custom-product-card__title{margin:0 0 12px;font-size:1.4rem;font-weight:600;line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:2.8em}.custom-product-card__title-link{text-decoration:none;color:#333;transition:color .2s ease}.custom-product-card__title-link:hover{color:#007bff}.custom-product-card__vendor{font-size:.9rem;color:#666;margin-bottom:10px;text-transform:uppercase;letter-spacing:.5px}.custom-product-card__price{display:flex;align-items:center;justify-content:center;gap:8px;margin-bottom:15px;flex-wrap:wrap}.custom-product-card__price--current{font-size:2rem;font-weight:700;color:#333}.custom-product-card__price--current.custom-product-card__price--sale{color:#f44}.custom-product-card__price--compare{font-size:1.5rem;color:#999;text-decoration:line-through}.custom-product-card__buttons{margin-top:auto;display:flex;flex-direction:column;gap:10px;width:100%}.custom-product-card__button{width:100%;text-align:center;padding:12px 16px;border-radius:6px;font-weight:600;text-transform:uppercase;font-size:.85rem;letter-spacing:.5px;cursor:pointer;transition:all .3s ease;text-decoration:none;border:none;outline:none;display:flex;align-items:center;justify-content:center}.custom-product-card__button--description{background:#012f6d;color:#fff;border:1px solidrgb(15,75,154)}.custom-product-card__button--description:hover{background:#5a35c2;border-color:#5a35c2;transform:translateY(-2px)}.custom-product-card__button--add{background:#012f6d;color:#fff;border:1px solid #012f6d}.custom-product-card__button--add:hover{background:#001f4d;border-color:#001f4d;transform:translateY(-2px)}.custom-product-card__button--options{background:#012f6d;color:#fff;border:1px solid #012f6d}.custom-product-card__button--options:hover{background:#001f4d;color:#fff}.custom-product-card__button--disabled{background:#ccc;color:#666;cursor:not-allowed;border:1px solid #bbb}.custom-product-card__add-to-cart-row{display:flex;align-items:center;gap:10px;width:100%}.custom-product-card__quantity-wrapper{flex:0 0 auto}.custom-product-card__add-to-cart-row .custom-product-card__button--add{flex:1;min-width:0}.custom-product-card__quantity-wrapper .quantity{display:flex;align-items:center;border:1px solid #ddd;border-radius:6px;background:#f8f8f8;min-width:110px;transition:all .2s ease}.custom-product-card__quantity-wrapper .quantity:hover{border-color:#007bff;background:#fff}.custom-product-card__quantity-wrapper .quantity__button{background:transparent;border:none;cursor:pointer;color:#333;font-size:1.2rem;width:28px;height:28px;display:flex;align-items:center;justify-content:center;transition:color .2s ease}.custom-product-card__quantity-wrapper .quantity__button:hover{color:#007bff}.custom-product-card__quantity-wrapper .quantity__input{width:45px;text-align:center;border:none;background:transparent;font-size:1rem;color:#333;-webkit-appearance:textfield;appearance:textfield}.custom-product-card__quantity-wrapper .quantity__input::-webkit-outer-spin-button,.custom-product-card__quantity-wrapper .quantity__input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.description-popup{position:fixed;top:0;left:0;width:100%;height:100%;z-index:1000;display:none;align-items:center;justify-content:center;padding:20px;box-sizing:border-box}.description-popup.is-active{display:flex}.description-popup__overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#00000080;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.description-popup__content{position:relative;background:#fff;border-radius:12px;max-width:600px;width:100%;max-height:80vh;overflow:hidden;box-shadow:0 20px 60px #0003;animation:descriptionPopupFadeIn .3s ease-out}@keyframes descriptionPopupFadeIn{0%{opacity:0;transform:translateY(20px) scale(.95)}to{opacity:1;transform:translateY(0) scale(1)}}.description-popup__close{position:absolute;top:14px;right:14px;width:36px;height:36px;border:1px solid #ddd;background:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;color:#333;font-size:18px;transition:all .25s ease}.description-popup__close:hover{background:#f5f5f5;color:#000;transform:scale(1.08);box-shadow:0 2px 6px #0000001a}.description-popup__header{padding:24px 24px 16px;border-bottom:1px solid #f0f0f0}.description-popup__title{margin:0;font-size:1.5rem;font-weight:600;color:#333;line-height:1.3;padding-right:40px}.description-popup__body{padding:20px 24px 24px;max-height:calc(80vh - 100px);overflow-y:auto}.description-popup__body #dynamic-variant-description{line-height:1.6;color:#555}.description-popup__body #dynamic-variant-description p{margin-bottom:16px}.description-popup__body #dynamic-variant-description ul,.description-popup__body #dynamic-variant-description ol{margin-bottom:16px;padding-left:24px}.description-popup__body #dynamic-variant-description li{margin-bottom:8px}.description-popup__body #dynamic-variant-description strong{color:#333;font-weight:600}@media (max-width: 1024px){.custom-collection__grid--5-cols{grid-template-columns:repeat(4,minmax(250px,1fr))}.custom-collection__grid--4-cols{grid-template-columns:repeat(3,minmax(250px,1fr))}.custom-collection{padding:0 15px}}@media (max-width: 768px){.custom-collection__grid{grid-template-columns:repeat(2,minmax(250px,1fr));gap:20px}.custom-collection__grid--5-cols,.custom-collection__grid--4-cols,.custom-collection__grid--3-cols{grid-template-columns:repeat(2,minmax(250px,1fr))}.custom-collection__title{font-size:2rem}.custom-product-card{max-width:100%}.custom-product-card__content{padding:15px}.custom-product-card__title{font-size:1rem}.description-popup{padding:15px}.description-popup__content{max-height:85vh}.description-popup__header{padding:20px 20px 12px}.description-popup__title{font-size:1.3rem}.description-popup__body{padding:16px 20px 20px;max-height:calc(85vh - 80px)}.description-popup__close{top:12px;right:12px;width:36px;height:36px}}@media (max-width: 480px){.custom-collection__grid{grid-template-columns:repeat(2,1fr);gap:15px}.custom-collection__grid--5-cols,.custom-collection__grid--4-cols,.custom-collection__grid--3-cols,.custom-collection__grid--2-cols{grid-template-columns:repeat(2,1fr)}.custom-collection{padding:0 10px}.custom-collection__header{margin-bottom:25px}.custom-collection__title{font-size:1.6rem}.custom-product-card{max-width:100%;box-shadow:0 2px 10px #00000014}.custom-product-card__content{padding:12px}.custom-product-card__title{font-size:.95rem;min-height:2.6em}.custom-product-card__price--current{font-size:1.1rem}.custom-product-card__price--compare{font-size:.95rem}.custom-product-card__buttons{gap:8px;padding-top:12px}.custom-product-card__button{font-size:.8rem;padding:10px 12px}.custom-product-card__badge{font-size:.75rem;padding:4px 8px;top:8px;left:8px}.custom-product-card__quantity-wrapper .quantity{min-width:90px}.custom-product-card__quantity-wrapper .quantity__input{width:35px;font-size:.9rem}.custom-product-card__quantity-wrapper .quantity__button{width:24px;height:24px}.custom-product-card__add-to-cart-row{flex-direction:column;gap:8px}.custom-product-card__add-to-cart-row .custom-product-card__button--add{width:100%}.description-popup{padding:10px}.description-popup__content{max-height:90vh}.description-popup__header{padding:16px 16px 8px}.description-popup__title{font-size:1.2rem}.description-popup__body{padding:12px 16px 16px;max-height:calc(90vh - 60px)}}@media (max-width: 360px){.custom-collection__grid,.custom-collection__grid--5-cols,.custom-collection__grid--4-cols,.custom-collection__grid--3-cols,.custom-collection__grid--2-cols{grid-template-columns:1fr}.custom-product-card__title{font-size:1rem}.custom-product-card__price--current{font-size:1.2rem}.custom-product-card__button{font-size:.85rem;padding:12px 16px}}@media (max-width: 1200px){.custom-collection__grid--5-cols{grid-template-columns:repeat(4,minmax(250px,1fr))}}@media (max-width: 1024px){.custom-collection__grid--5-cols,.custom-collection__grid--4-cols{grid-template-columns:repeat(3,minmax(250px,1fr))}}@media (max-width: 768px){.custom-collection__grid{grid-template-columns:repeat(2,minmax(250px,1fr));gap:15px}.custom-collection__grid--5-cols,.custom-collection__grid--4-cols,.custom-collection__grid--3-cols{grid-template-columns:repeat(2,minmax(250px,1fr))}}@media (max-width: 480px){.custom-collection__grid{grid-template-columns:repeat(2,1fr);gap:12px}.custom-collection__grid--5-cols,.custom-collection__grid--4-cols,.custom-collection__grid--3-cols,.custom-collection__grid--2-cols{grid-template-columns:repeat(2,1fr)}}@media (max-width: 360px){.custom-collection__grid,.custom-collection__grid--5-cols,.custom-collection__grid--4-cols,.custom-collection__grid--3-cols,.custom-collection__grid--2-cols{grid-template-columns:1fr}}
/*# sourceMappingURL=/cdn/shop/t/97/assets/custom-collection.css.map */
