/* ========================================
   WEDDING WEBSITE - STYLES
   Cores: Primária #fd3578, Secundária #e35336
   Background: Off-White
======================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-color: #61401d;
    --secondary-color: #e35336;
    --background-color: #fdfbf9;
    --off-white: #f8f6f3;
    --text-dark: #2d2d2d;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --shadow-soft: 0 4px 20px rgba(253, 53, 120, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 40px rgba(253, 53, 120, 0.15);
    --border-radius: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-color);
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: 0.01em; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    font-size: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(253, 251, 249, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
}

.header.scrolled .nav-links a {
    color: var(--text-dark);
}

.header.scrolled .nav-links a:hover {
    color: var(--primary-color);
}

.header.scrolled .logo {
    color: var(--primary-color);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.logo span {
    color: var(--white);
}

.header.scrolled .logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.header.scrolled .nav-links a::after {
    background: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.header.scrolled .menu-toggle span {
    background: var(--text-dark);
}

/* Music Control */
.music-control {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
}

.music-control:hover {
    transform: scale(1.1);
}

.music-control svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.music-control.playing .icon-play { display: none; }
.music-control:not(.playing) .icon-pause { display: none; }

/* ========================================
   HERO BANNER - FULLSCREEN
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-position: center 1000%;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70% !important;
}


.hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-date {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.15em;
    margin-bottom: 2.5rem;
}

.hero-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--white);
    color: var(--primary-color);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    background: var(--primary-color);
    color: var(--white);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
    z-index: 3;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: rgba(255, 255, 255, 0.7);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ========================================
   COUNTDOWN SECTION
======================================== */
.countdown-section {
    padding: 6rem 0;
    background: var(--off-white);
    text-align: center;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--white);
    padding: 2rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    min-width: 140px;
    transition: var(--transition);
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
    padding: 8rem 0;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}


.about-image:first-child {
    grid-column: 1 / -1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.about-image-placeholder {
    width: 100%;
    height: 250px;
    background: rgba(253, 53, 120, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.9;
}

/* Info Card */
.info-card {
    background: var(--primary-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    color: var(--white);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
}

.info-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    position: relative;
}

/* ========================================
   GIFTS SECTION
======================================== */
.gifts-section {
    padding: 6rem 0;
    background: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Filter - Discrete Style */
.filter-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.filter-wrapper {
    position: relative;
}

.filter-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

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

.filter-toggle svg {
    width: 16px;
    height: 16px;
}

.filter-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    padding: 0.5rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
}

.filter-wrapper:hover .filter-dropdown,
.filter-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-btn {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition);
}

.filter-btn:hover {
    background: var(--off-white);
    color: var(--primary-color);
}

.filter-btn.active {
    background: rgba(253, 53, 120, 0.1);
    color: var(--primary-color);
    font-weight: 500;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-image-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(253, 53, 120, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Reserved Badge - Full Width Horizontal */
.reserved-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.reserved-badge span {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.btn-gift {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gift:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.btn-gift:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* View More Button */
.view-more-container {
    text-align: center;
    margin-top: 4rem;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
}

.btn-view-more:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: transparent;
}

.btn-view-more svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.btn-view-more:hover svg {
    transform: translateX(5px);
}

/* ========================================
   GALLERY SECTION
======================================== */
.gallery-section {
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(253, 53, 120, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.8rem;
}

/* ========================================
   LOGIN PAGE
======================================== */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-color);
    padding: 2rem;
}

.login-container {
    width: 100%;
    max-width: 420px;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-medium);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.login-logo span {
    color: var(--secondary-color);
}

.login-header h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.login-header p {
    font-size: 0.9rem;
}

.login-form {
    margin-top: 2rem;
}

.login-error {
    background: #fee;
    border: 1px solid #fcc;
    color: #c33;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    display: none;
}

.btn-login {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-login:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.btn-login:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.back-to-site {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.back-to-site svg {
    width: 18px;
    height: 18px;
}

/* Admin User Info */
.admin-user {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.admin-user strong {
    color: var(--primary-color);
}

/* Nav Logout Button */
.nav-logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.nav-logout-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Unreserve Button */
.btn-unreserve {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.btn-unreserve:hover {
    background: #4caf50;
    color: var(--white);
}

.btn-unreserve svg {
    width: 20px;
    height: 20px;
}

/* Reserved By Info */
.reserved-by {
    display: block;
    font-size: 0.75rem;
    color: var(--primary-color);
    margin-top: 0.3rem;
}

/* Loading States */
.loading-products {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.no-products {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

/* ========================================
   ALL PRODUCTS PAGE
======================================== */
.products-page {
    padding-top: 120px;
    min-height: 100vh;
}

.products-page .products-grid {
    margin-bottom: 4rem;
}

/* Header nas páginas internas (com classe header-solid) */
.header.header-solid {
    background: rgba(253, 251, 249, 0.98);
    backdrop-filter: blur(20px);
}

.header.header-solid .logo {
    color: var(--primary-color);
}

.header.header-solid .logo span {
    color: var(--secondary-color);
}

.header.header-solid .nav-links a {
    color: var(--text-dark);
}

.header.header-solid .nav-links a:hover {
    color: var(--primary-color);
}

.header.header-solid .nav-links a::after {
    background: var(--primary-color);
}

.header.header-solid .menu-toggle span {
    background: var(--text-dark);
}

/* ========================================
   CHECKOUT PAGE
======================================== */
.checkout-page {
    min-height: 100vh;
    padding: 120px 0 4rem;
    background: var(--background-color);
}

.checkout-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

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

.back-link svg {
    width: 20px;
    height: 20px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.checkout-product {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    height: fit-content;
}

.checkout-product-image {
    width: 100%;
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.checkout-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-product h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.checkout-product .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.checkout-form-container {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.checkout-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.payment-placeholder {
    background: var(--off-white);
    border: 2px dashed rgba(253, 53, 120, 0.3);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    margin: 2rem 0;
}

.payment-placeholder svg {
    width: 60px;
    height: 60px;
    stroke: var(--primary-color);
    margin-bottom: 1rem;
}

.payment-placeholder h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.payment-placeholder p {
    font-size: 0.9rem;
}

.payment-info {
    background: var(--off-white);
    border: 2px solid rgba(253, 53, 120, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-icon {
    font-size: 2rem;
}

.payment-info p {
    margin: 0.5rem 0;
}

.payment-options {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.btn-checkout {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.btn-checkout:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.btn-checkout:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-checkout svg {
    flex-shrink: 0;
}

/* ========================================
   THANK YOU PAGE
======================================== */
.thankyou-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-color);
    padding: 2rem;
}

.thankyou-content {
    text-align: center;
    max-width: 600px;
}

.thankyou-icon {
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.thankyou-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--white);
}

.thankyou-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.thankyou-content h1 span {
    color: var(--primary-color);
}

.thankyou-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.thankyou-content .blessing {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    margin: 2rem 0;
}

.btn-home {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 2rem;
}

.btn-home:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

/* ========================================
   ADMIN PAGE
======================================== */
.admin-page {
    padding: 120px 0 4rem;
    min-height: 100vh;
    background: var(--background-color);
}

.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.admin-header h1 {
    font-size: 2.5rem;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.admin-form-container {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.admin-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.image-upload {
    border: 2px dashed rgba(253, 53, 120, 0.3);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 1.5rem;
}

.image-upload:hover {
    border-color: var(--primary-color);
    background: rgba(253, 53, 120, 0.02);
}

.image-upload input {
    display: none;
}

.image-upload svg {
    width: 50px;
    height: 50px;
    stroke: var(--primary-color);
    margin-bottom: 1rem;
}

.image-upload p {
    font-size: 0.9rem;
}

.image-preview {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 1rem;
}

.btn-add-product {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-add-product:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.admin-products {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.admin-products h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.admin-product-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-product-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: var(--off-white);
    border-radius: 12px;
    transition: var(--transition);
}

.admin-product-item:hover {
    background: rgba(253, 53, 120, 0.05);
}

.admin-product-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.admin-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-product-info {
    flex: 1;
}

.admin-product-info h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.admin-product-info .price {
    font-weight: 600;
    color: var(--primary-color);
}

.admin-product-status {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 500;
}

.admin-product-status.available {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.admin-product-status.reserved {
    background: rgba(253, 53, 120, 0.1);
    color: var(--primary-color);
}

.admin-product-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-edit,
.btn-delete {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-edit {
    background: rgba(253, 53, 120, 0.1);
    color: var(--primary-color);
}

.btn-edit:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-delete {
    background: rgba(227, 83, 54, 0.1);
    color: var(--secondary-color);
}

.btn-delete:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-edit svg,
.btn-delete svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-images {
        order: -1;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-form-container {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-medium);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: var(--text-dark) !important;
    }
    
    .nav-links a:hover {
        color: var(--primary-color) !important;
    }
    
    .nav-links a::after {
        background: var(--primary-color) !important;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .hero-date {
        font-size: 1rem;
    }
    
    .hero-btn {
        padding: 1rem 2rem;
        font-size: 0.8rem;
    }
    
    .countdown-container {
        gap: 1rem;
    }
    
    .countdown-item {
        padding: 1.5rem;
        min-width: 100px;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-image,
    .hero-image-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .music-control {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
    }
}

/* ========================================
   ANIMATIONS
======================================== */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
