
* { margin: 0; padding: 0; box-sizing: border-box; }
body { width: 160px; height: 600px; 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; flex-direction: column; align-items: center; justify-content: space-between; padding: 25px 0; }

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

#logo_svg { height: 50px; width: auto; transform: scale(var(--logo-scale, 1)); }
.logo-area { height: auto; display: flex; align-items: center; justify-content: center; margin: 15px 0; width: 100%; }
.text-area { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 15px; padding: 0 10px; width: 100%; min-height: 100px; }
#headline_txt { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; text-align: center; line-height: 1.1; }
#cta_txt { padding: 8px 24px; border-radius: 25px; font-size: 12px; border: 1.5px solid #000; font-weight: bold; text-transform: uppercase; }

/* FEED MODE */
.carousel-area { width: 100%; display: flex; align-items: center; justify-content: center; position: relative; height: 180px; }
#CarouselHolder { width: 110px; height: 160px; overflow: hidden; position: relative; }
#productSlider { display: flex; transition: cubic-bezier(0.4, 0, 0.2, 1) 0.5s; height: 100%; position: absolute; }
.productSet { width: 110px; height: 160px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; }
.product_image { width: 75px; height: 75px; object-fit: contain; }
.product-info { margin-top: 8px; font-size: 11px; font-weight: bold; text-align: 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 { position: absolute; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; color: #000; background: rgba(255,255,255,0.7); border-radius: 50%; z-index: 10; cursor: pointer; border: 1px solid rgba(0,0,0,0.1); }
#leftArrow { left: 15px; }
#rightArrow { right: 15px; }
.arrow svg { width: 10px; height: 10px; }

/* GRID MODE */
.grid-area { display: none; flex-direction: column; align-items: center; gap: 10px; padding: 10px 0; overflow: hidden; }
.grid-product { display: flex; flex-direction: column; align-items: center; width: 120px; padding: 5px; }
.grid-product img { width: 80px; height: 80px; object-fit: contain; }
.grid-info { font-size: 10px; margin-top: 4px; text-align: center; }
.grid-cat { font-weight: bold; text-transform: uppercase; font-size: 9px; }
.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 { display: none; }
body.grid .grid-area { display: flex; }
body.grid .divider:nth-child(2) { display: none; }
body.grid .text-area { flex-grow: 1; }
