
* { margin: 0; padding: 0; box-sizing: border-box; }
body { width: 728px; height: 90px; overflow: hidden; background: #f3f4ef; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 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 15px; }

.divider { width: 1px; height: 60px; background: rgba(0,0,0,0.1); flex-shrink: 0; }

#logo_svg { height: 29px; width: auto; transform: scale(var(--logo-scale, 1)); margin-right: 11px; }
.logo-area { height: auto; display: flex; align-items: center; justify-content: center; width: auto; }
.text-area { flex-grow: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 0 10px; width: 280px; }
#headline_txt { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: #000; text-align: center; line-height: 1.1; height: 40px; display: flex; align-items: center; justify-content: center; }
#cta_txt { padding: 6px 16px; border-radius: 20px; font-size: 11px; border: 1.5px solid #000; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; transition: 0.2s; }
#cta_txt:hover { background: #000; color: #fff; }

/* FEED MODE */
.carousel-area { width: 280px; display: flex; align-items: center; justify-content: center; position: relative; }
#CarouselHolder { width: 120px; height: 90px; overflow: hidden; position: relative; }
#productSlider { display: flex; transition: cubic-bezier(0.4, 0, 0.2, 1) 0.5s; height: 100%; position: absolute; }
.productSet { width: 120px; height: 90px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 5px; position: relative; }
.product_image { width: 55px; height: 55px; object-fit: contain; }
.product-info { margin-top: 4px; display: flex; flex-direction: column; align-items: center; }
.product-price { font-size: 11px; font-weight: 800; color: #000; background: #fff; padding: 1px 6px; border-radius: 10px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }

.arrow { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #000; transition: 0.2s; z-index: 10; border-radius: 50%; }
.arrow:hover { background: rgba(0,0,0,0.05); }
.arrow svg { width: 20px; height: 20px; }

/* GRID MODE */
.grid-area { display: none; flex-grow: 1; align-items: center; justify-content: space-around; padding: 0 10px; height: 100%; }
.grid-product { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 110px; padding: 5px; }
.grid-product img { width: 50px; height: 50px; object-fit: contain; }
.grid-info { text-align: center; margin-top: 4px; }
.grid-cat { font-size: 8px; font-weight: bold; text-transform: uppercase; margin-bottom: 2px; }
.grid-price { font-size: 11px; font-weight: 800; color: #000; background: #fff; padding: 1px 6px; border-radius: 10px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }

body.grid .carousel-area, body.grid .divider:nth-child(4) { display: none; }
body.grid .grid-area { display: flex; }
body.grid .text-area { flex-grow: 0; width: 220px; align-items: center; }
body.grid #logo_svg { height: 29px; width: auto; transform: scale(var(--logo-scale, 1)); margin-right: 11px;}
.logo-area { width: auto; }
