The Add to Cart button in Squarespace 7.1 uses the .sqs-add-to-cart-button selector. You can override its colors, padding, border-radius, and typography to match your brand.
Make the button visually prominent — it's the most important CTA on your product page. A contrasting color and generous padding help conversion rates.
.sqs-add-to-cart-button {
background-color: #e63946 !important;
color: #ffffff !important;
border: none !important;
border-radius: 8px !important;
padding: 16px 40px !important;
font-size: 16px !important;
font-weight: 700 !important;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
width: 100%;
}
.sqs-add-to-cart-button:hover {
background-color: #c1121f !important;
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}Design your cart buttons with our Cart Styler toolTry it free →
