:root {
    --primary: #CA3C66;
    --secondary: #DB6A8F;
    --tertiary: #E8AABE;
    --accent1: #A7E0E0;
    --accent2: #4AA3A2;
    --background: #f5b5c8;
    --whatsapp: #25D366;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    width: 100%;
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

.text-primary {
    color: var(--primary);
}

.bg-primary {
    background-color: var(--primary);
}

.hover-primary:hover {
    color: var(--primary);
}

.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
    cursor: pointer;
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.about-section,
.shop-section,
.reviews-section,
.contact-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

stripe-buy-button {
    width: 100%;
    display: block;
}

.reproductions-info a.inline-block {
    transition: transform 0.3s ease;
}

.reproductions-info a.inline-block:hover {
    transform: translateY(-4px);
}
