/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: #d4a574;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #d4a574;
}

.cart-icon {
    cursor: pointer;
    font-size: 1.2rem;
    padding: 10px;
    border-radius: 50px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    background: #d4a574;
    color: white;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 100px 20px 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.couple-names {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: #d4a574;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.wedding-date {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.wedding-subtitle {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #d4a574;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.cta-button:hover {
    background: #c19660;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.rsvp-button {
    display: inline-block;
    padding: 15px 30px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    font-family: inherit;
}

.rsvp-button:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.couple-photo {
    width: 420px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.couple-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.placeholder-image {
    width: 300px;
    height: 400px;
    background: #e9ecef;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Sections */
section {
    padding: 80px 0;
}

h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    text-align: center;
    color: #d4a574;
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background: white;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

/* Details Section */
.details {
    background: #f8f9fa;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.detail-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d4a574;
}

.detail-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Gifts Section */
.gifts {
    background: white;
}

.gifts-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.controls-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #d4a574;
    background: transparent;
    color: #d4a574;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #d4a574;
    color: white;
}

.sort-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sort-section label {
    color: #666;
    font-weight: 500;
    white-space: nowrap;
}

.sort-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.sort-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: white;
    color: #666;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.sort-btn.active,
.sort-btn:hover {
    background: #d4a574;
    color: white;
    border-color: #d4a574;
}

.results-info {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
    font-size: 0.95rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.1rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 10px 15px;
    border: 1px solid #ddd;
    background: white;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-size: 0.9rem;
}

.pagination-btn:hover {
    background: #f8f9fa;
    border-color: #d4a574;
}

.pagination-btn.active {
    background: #d4a574;
    color: white;
    border-color: #d4a574;
}

.pagination-dots {
    padding: 10px 5px;
    color: #999;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 220px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.product-image:hover img {
    transform: scale(1.05);
}

.product-image .fallback-text {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: #666;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    background: #f8f9fa;
}

.product-image .zoom-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 16px;
}

.product-image:hover .zoom-icon {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 1rem;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: #d4a574;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.add-to-cart:hover {
    background: #c19660;
    transform: translateY(-1px);
}

/* Contact Section */
.contact {
    background: #f8f9fa;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
    color: #d4a574;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-item p {
    color: #666;
    margin-bottom: 0.5rem;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    color: #128C7E;
    text-decoration: underline;
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.cart-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.cart-header h3 {
    color: #d4a574;
    margin: 0;
}

.close-cart {
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.cart-items {
    padding: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.cart-item-price {
    font-weight: 600;
    color: #d4a574;
}

.remove-item {
    background: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

.cart-total {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #333;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: #d4a574;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: #c19660;
}

/* Checkout Modal */
.checkout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2001;
}

.checkout-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.checkout-header h3 {
    color: #d4a574;
    margin: 0;
}

.close-checkout {
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.checkout-body {
    padding: 2rem;
}

.checkout-summary {
    margin-bottom: 2rem;
}

.checkout-summary h4 {
    color: #333;
    margin-bottom: 1rem;
}

.checkout-total {
    text-align: center;
    font-size: 1.3rem;
    color: #d4a574;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.payment-section h4 {
    color: #333;
    margin-bottom: 1rem;
}

.qr-code {
    text-align: center;
    margin-bottom: 1.5rem;
}

.qr-code-image {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
    background: white;
    padding: 10px;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.qr-code-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.qr-instruction {
    font-size: 0.8rem;
    color: #666;
    margin: 0.5rem 0 1rem 0;
    font-style: italic;
}

.pix-info {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #d4a574;
}

.pix-recipient {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.pix-recipient label {
    font-weight: 500;
    color: #666;
    margin: 0;
}

.recipient-name {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    background: #e9ecef;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #666;
}

.pix-key-section {
    margin-bottom: 2rem;
}

.pix-key-section label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.pix-key-container {
    display: flex;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.pix-key-container input {
    flex: 1;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.9rem;
    background: #f8f9fa;
    color: #333;
}

.copy-btn {
    padding: 12px 20px;
    background: #d4a574;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-btn:hover {
    background: #c19660;
    transform: translateY(-1px);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-btn.copied {
    background: #28a745;
    animation: copySuccess 0.3s ease;
}

.copy-status {
    display: block;
    color: #28a745;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-status.show {
    opacity: 1;
}

@keyframes copySuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.message-section {
    margin-bottom: 2rem;
}

.sender-info {
    margin-bottom: 1.5rem;
}

.sender-info label,
.gift-message label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.sender-info input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.sender-info input:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.2);
}

.sender-info input::placeholder {
    color: #999;
}

.gift-message textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.gift-message textarea:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.2);
}

.gift-message textarea::placeholder {
    color: #999;
}

.confirm-btn {
    width: 100%;
    padding: 15px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.confirm-btn:hover:not(:disabled) {
    background: #218838;
}

.confirm-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

/* PIX Confirmation Checkbox */
.pix-confirmation {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #333;
    gap: 12px;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-container:hover .checkmark {
    border-color: #28a745;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background-color: #28a745;
    border-color: #28a745;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark:after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* RSVP Modal */
.rsvp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2002;
}

.rsvp-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.rsvp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.rsvp-header h3 {
    color: #d4a574;
    margin: 0;
}

.close-rsvp {
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.rsvp-body {
    padding: 2rem;
}

.rsvp-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.rsvp-form h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.guests-section {
    margin-bottom: 2rem;
}

.guest-input {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
    align-items: center;
}

.guest-input input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.guest-input input:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.2);
}

.guest-input input::placeholder {
    color: #999;
}

.remove-guest {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.remove-guest:hover {
    background: #c82333;
    transform: scale(1.1);
}

.add-guest-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.add-guest-btn:hover {
    background: #218838;
    transform: translateY(-1px);
}

.contact-section {
    margin-bottom: 2rem;
}

.phone-input input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.phone-input input:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.2);
}

.phone-input input::placeholder {
    color: #999;
}

.message-section {
    margin-bottom: 2rem;
}

.message-section textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.message-section textarea:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.2);
}

.message-section textarea::placeholder {
    color: #999;
}

.confirm-rsvp-btn {
    width: 100%;
    padding: 15px;
    background: #d4a574;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.confirm-rsvp-btn:hover {
    background: #c19660;
}

.confirm-rsvp-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    cursor: pointer;
}

.image-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.image-modal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 3001;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.image-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.image-modal-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
}

.image-modal-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
}

.image-modal-info p {
    margin: 0;
    opacity: 0.9;
}

/* Floating Cart */
.floating-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #d4a574;
    color: white;
    border-radius: 25px;
    padding: 15px 20px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
    z-index: 1500;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    min-width: 200px;
    opacity: 0;
    transform: translateY(100px);
    pointer-events: none;
}

.floating-cart.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    animation: floatIn 0.5s ease forwards;
}

.floating-cart.show:hover {
    background: #c19660;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.5);
}

.floating-cart-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.floating-cart-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.floating-cart-count {
    background: #fff;
    color: #d4a574;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 2px;
}

.floating-cart-total {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.floating-cart-text {
    font-size: 0.85rem;
    opacity: 0.9;
    text-align: center;
    line-height: 1.2;
}

.floating-cart-text span {
    display: block;
}

/* Hide floating cart when cart is empty - DEPRECATED, now using show class */
.floating-cart.empty {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100px);
}

/* Animations */
@keyframes floatIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Pulse animation for new items */
.floating-cart.pulse {
    animation: pulse 0.6s ease;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .couple-names {
        font-size: 3rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .cta-button,
    .rsvp-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .couple-photo {
        width: 350px;
        height: 250px;
    }
    
    .placeholder-image {
        width: 250px;
        height: 300px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .product-description {
        font-size: 0.85rem;
    }
    
    .controls-section {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .sort-section {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .sort-buttons {
        justify-content: center;
    }
    
    .pagination {
        gap: 0.25rem;
    }
    
    .pagination-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .cart-content,
    .checkout-content,
    .rsvp-content {
        width: 95%;
    }
    
    .image-modal-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .image-modal-close {
        top: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 30px;
    }
    
    .image-modal-info {
        padding: 20px 15px 15px;
    }
    
    .image-modal-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .couple-names {
        font-size: 2.5rem;
    }
    
    .couple-photo {
        width: 280px;
        height: 200px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .cta-button,
    .rsvp-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-name {
        font-size: 0.95rem;
    }
    
    .product-description {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .sort-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .sort-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .checkout-body {
        padding: 1rem;
    }
    
    /* RSVP Modal Mobile */
    .rsvp-body {
        padding: 1rem;
    }
    
    .guest-input {
        flex-direction: column;
        gap: 8px;
    }
    
    .guest-input input {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 10px;
    }
    
    .remove-guest {
        align-self: flex-end;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .add-guest-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .phone-input input {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 10px;
    }
    
    .message-section textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 10px;
        min-height: 80px;
    }
    
    /* PIX Confirmation Mobile */
    .pix-confirmation {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .checkbox-container {
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
    }
    
    .checkbox-container input[type="checkbox"]:checked + .checkmark:after {
        left: 5px;
        top: 1px;
        width: 5px;
        height: 9px;
    }
    
    /* Form fields mobile */
    .sender-info input,
    .gift-message textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 10px;
    }
    
    .gift-message textarea {
        min-height: 80px;
    }
    
    .image-modal-content {
        max-width: 98%;
        max-height: 80%;
    }
    
    .image-modal-info h3 {
        font-size: 1rem;
    }
    
    .image-modal-info p {
        font-size: 0.85rem;
    }
    
    /* Floating Cart Mobile */
    .floating-cart {
        bottom: 15px;
        right: 15px;
        padding: 12px 16px;
        min-width: 180px;
        border-radius: 20px;
    }
    
    .floating-cart-icon {
        font-size: 1.3rem;
    }
    
    .floating-cart-count {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .floating-cart-total {
        font-size: 0.8rem;
    }
    
    .floating-cart-text {
        font-size: 0.75rem;
    }
    
    /* PIX Key Mobile */
    .pix-key-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .pix-key-container input {
        font-size: 0.8rem;
        padding: 10px;
    }
    
    .copy-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    /* QR Code Mobile */
    .qr-code-image {
        width: 180px;
        height: 180px;
        padding: 8px;
    }
    
    .qr-placeholder {
        width: 180px;
        height: 180px;
    }
    
    /* PIX Info Mobile */
    .pix-recipient {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .recipient-name {
        font-size: 1rem;
    }
}