
* { margin: 0; padding: 0; box-sizing: border-box; }
body { width: 320px; height: 50px; overflow: hidden; background: #f3f4ef; font-family: -apple-system, sans-serif; }
#content { width: 100%; height: 100%; border: 1px solid #000; position: relative; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 0 8px; gap: 4px; }

#logo_svg { height: 20px; width: auto; }
.logo-area { width: 45px; font-weight: 800; letter-spacing: 0.5px; font-size: 7px; flex-shrink: 0; overflow: hidden; white-space: nowrap; }
.text-area { flex-grow: 1; display: flex; align-items: center; justify-content: center; padding: 0 4px; min-width: 0; }
#headline_txt { font-size: 11px; font-weight: 600; text-align: center; color: #000; line-height: 1.1; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
#cta_txt { padding: 4px 8px; border-radius: 12px; font-size: 8px; border: 1.2px solid #000; font-weight: bold; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; }

/* FEED MODE */
.carousel-area { width: 85px; height: 50px; display: flex; align-items: center; justify-content: center; position: relative; flex-shrink: 0; }
#CarouselHolder { width: 85px; height: 50px; overflow: hidden; position: relative; }
#productSlider { display: flex; transition: cubic-bezier(0.4, 0, 0.2, 1) 0.5s; height: 100%; position: absolute; }
.productSet { width: 85px; height: 50px; flex-shrink: 0; position: relative; }
.product_image { width: 38px; height: 38px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); object-fit: contain; }
.product-info { position: absolute; bottom: 6px; left: 62px; flex-shrink: 0; z-index: 5; }
.product-price { font-size: 5px; font-weight: 800; color: #000; background: rgba(255,255,255,0.8); padding: 0 3px; border-radius: 4px; }

.arrow { display: none; } /* Arrows are too big for 320x50, auto-slide suffices */

/* GRID MODE */
.grid-area { display: none; width: 115px; align-items: center; justify-content: space-between; gap: 2px; flex-shrink: 0; padding: 0 2px; }
.grid-product { display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; width: 36px; height: 50px; }
.grid-product img { width: 32px; height: 32px; object-fit: contain; }
.grid-info { font-size: 7px; font-weight: 900; background: #fff; padding: 0 1px; border-radius: 2px; border: 1px solid rgba(0,0,0,0.1); margin-top: -4px; z-index: 2; transform: translateY(-2px); }

body.grid .carousel-area { display: none; }
body.grid .grid-area { display: flex; }
body.grid .text-area { width: 100px; }
body.grid #logo_svg { height: 20px; width: auto; }
.logo-area { width: 40px; }
