/* === Shop Card Button Alignment === */ /* Make all buttons inside shop-card align consistently */ .shop-card .elementor-widget-button { margin-top: auto; /* Pushes button to bottom of card */ align-self: center; /* Centers button horizontally */ margin-left: 0 !important; margin-right: 0 !important; } /* Responsive layout fixes */ @media (max-width: 1024px) { /* Tablet: 2 columns */ .shop-card { flex: 0 0 48%; max-width: 48%; } } @media (max-width: 767px) { /* Mobile: 1 column */ .shop-card { flex: 0 0 100%; max-width: 100%; } }