.dog-bakery-product-showcase {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
margin: 1.5rem 0;
width: 100%;
max-width: 100%;
} .dog-bakery-product-showcase-empty {
padding: 2rem;
text-align: center;
color: #666;
background: #f9f9f9;
border-radius: 8px;
border: 2px dashed #ddd;
} .showcase-row {
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.showcase-row:last-child {
border-bottom: none;
} .showcase-highlight {
background: linear-gradient(135deg, rgba(243, 231, 255, 0.3) 0%, rgba(252, 231, 243, 0.3) 100%);
}
.showcase-row-link {
display: flex;
flex-direction: column;
gap: 1rem;
padding: 1rem;
text-decoration: none;
color: inherit;
transition: background-color 0.2s ease;
}
.showcase-row-link:hover {
background-color: rgba(0, 0, 0, 0.02);
}
.showcase-row-image {
width: 100%;
height: 200px;
border-radius: 12px;
overflow: hidden;
background: linear-gradient(135deg, #f3e7ff 0%, #fce7f3 100%);
display: flex;
align-items: center;
justify-content: center;
position: relative;
} @media (min-width: 600px) {
.dog-bakery-product-showcase.format-horizontal .showcase-row-link {
display: grid;
grid-template-columns: 200px 1fr;
gap: 1.5rem;
padding: 1.5rem;
align-items: center;
}
.dog-bakery-product-showcase.format-horizontal .showcase-row-image {
width: 200px;
height: 200px;
}
}
.showcase-row-image .product-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.showcase-row-link:hover .showcase-row-image .product-image {
transform: scale(1.05);
}
.product-image-placeholder {
font-size: 3rem;
opacity: 0.5;
}
.highlight-badge {
position: absolute;
top: 0.5rem;
left: 0.5rem;
display: inline-flex;
align-items: center;
gap: 0.375rem;
padding: 0.375rem 0.75rem;
border-radius: 9999px;
color: #ffffff !important;
font-weight: 700;
font-size: 0.75rem;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.highlight-badge span {
color: #ffffff !important;
}
.showcase-row-content {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.showcase-row-content .product-title {
font-size: 1.25rem;
font-weight: 700;
color: #1f2937;
margin: 0;
line-height: 1.3;
}
.showcase-row-content .product-price {
font-size: 1.25rem;
font-weight: 700;
}
.showcase-row-content .product-price,
.showcase-row-content .product-price * {
opacity: 1 !important;
} .showcase-accordion-row {
background: white;
}
.accordion-header {
display: grid;
grid-template-columns: 60px 1fr auto 40px;
gap: 1rem;
align-items: center;
padding: 1rem 1.5rem;
cursor: pointer;
transition: all 0.2s ease;
user-select: none;
}
.accordion-header:hover {
background-color: rgba(0, 0, 0, 0.02);
}
.showcase-accordion-row.is-active .accordion-header {
background-color: rgba(0, 0, 0, 0.03);
}
.accordion-thumbnail {
width: 60px;
height: 60px;
border-radius: 8px;
overflow: hidden;
background: linear-gradient(135deg, #f3e7ff 0%, #fce7f3 100%);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.accordion-thumbnail .product-image {
width: 100%;
height: 100%;
object-fit: cover;
}
.accordion-thumbnail .product-image-placeholder {
font-size: 1.5rem;
opacity: 0.5;
}
.accordion-title {
font-size: 1rem;
font-weight: 600;
color: #1f2937;
line-height: 1.3;
}
.accordion-price {
font-size: 1rem;
font-weight: 700;
white-space: nowrap;
}
.accordion-price,
.accordion-price * {
opacity: 1 !important;
}
.accordion-toggle {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
color: #6b7280;
transition: transform 0.3s ease;
}
.showcase-accordion-row.is-active .accordion-toggle {
transform: rotate(180deg);
} .accordion-body {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
opacity: 0;
}
.showcase-accordion-row.is-active .accordion-body {
max-height: 500px;
opacity: 1;
}
.accordion-body-link {
display: flex;
flex-direction: column;
gap: 1rem;
padding: 0 1rem 1rem 1rem;
text-decoration: none;
color: inherit;
}
.accordion-body-image {
width: 100%;
height: 180px;
border-radius: 12px;
overflow: hidden;
background: linear-gradient(135deg, #f3e7ff 0%, #fce7f3 100%);
display: flex;
align-items: center;
justify-content: center;
} @media (min-width: 600px) {
.dog-bakery-product-showcase.format-horizontal .accordion-body-link {
display: grid;
grid-template-columns: 200px 1fr;
gap: 1.5rem;
padding: 0 1.5rem 1.5rem 1.5rem;
align-items: center;
}
.dog-bakery-product-showcase.format-horizontal .accordion-body-image {
width: 200px;
height: 200px;
}
}
.accordion-body-image .product-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.accordion-body-link:hover .accordion-body-image .product-image {
transform: scale(1.05);
}
.accordion-body-content {
display: flex;
flex-direction: column;
gap: 1rem;
}
.accordion-body-content .product-excerpt {
font-size: 0.875rem;
color: #6b7280;
line-height: 1.5;
}
.product-button {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.625rem 1.25rem;
border-radius: 9999px;
color: white;
font-weight: 600;
font-size: 0.875rem;
transition: all 0.2s ease;
width: fit-content;
}
.accordion-body-link:hover .product-button {
transform: translateX(4px);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}  @media (max-width: 768px) {
.dog-bakery-product-showcase {
margin: 1rem 0;
}
.showcase-row-content .product-title {
font-size: 1.125rem;
}
.showcase-row-content .product-price {
font-size: 1.125rem;
}
.accordion-title {
font-size: 0.938rem;
}
.accordion-price {
font-size: 0.938rem;
}
} @media (max-width: 480px) {
.dog-bakery-product-showcase {
border-radius: 10px;
margin: 1rem 0;
}
.showcase-row-link {
gap: 0.75rem;
padding: 0.75rem;
}
.showcase-row-content .product-title {
font-size: 1rem;
}
.showcase-row-content .product-price {
font-size: 1rem;
} .accordion-header {
grid-template-columns: 45px 1fr 32px;
gap: 0.625rem;
padding: 0.75rem;
}
.accordion-thumbnail {
width: 45px;
height: 45px;
}
.accordion-title {
font-size: 0.875rem;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.accordion-price {
display: none; }
.accordion-toggle {
width: 32px;
height: 32px;
}
.accordion-body-link {
gap: 0.75rem;
padding: 0 0.75rem 0.75rem 0.75rem;
}
.accordion-body-content .product-excerpt {
font-size: 0.813rem;
}
.product-button {
padding: 0.5rem 1rem;
font-size: 0.813rem;
}
.highlight-badge {
top: 0.5rem;
left: 0.5rem;
padding: 0.25rem 0.5rem;
font-size: 0.688rem;
gap: 0.25rem;
}
.highlight-badge span:first-child {
font-size: 0.813rem;
}
} @media (max-width: 360px) {
.showcase-row-image {
height: 160px;
}
.accordion-body-image {
height: 140px;
} .dog-bakery-product-showcase.format-portrait .showcase-row-image {
height: 220px;
}
.dog-bakery-product-showcase.format-portrait .accordion-body-image {
height: 180px;
}
.showcase-row-content .product-title {
font-size: 0.938rem;
}
.accordion-title {
font-size: 0.813rem;
}
}   .dog-bakery-product-showcase.format-portrait .showcase-row-image {
height: 260px;
}
.dog-bakery-product-showcase.format-portrait .accordion-body-image {
height: 220px;
}