*, *::before, *::after { box-sizing: border-box; }
:root {
  --bg: hsl(32, 24%, 97%);
  --fg: hsl(220, 20%, 15%);
  --card: hsl(0,0%,100%);
  --primary: hsl(73, 63%, 47%);
  --primary-fg: hsl(0,0%,100%);
  --primary-glow: hsl(80, 58%, 58%);
  --primary-soft: hsl(73 63% 47% / 0.1);
  --primary-soft-border: hsl(73 63% 47% / 0.16);
  --secondary: hsl(32, 18%, 93%);
  --muted: hsl(220, 14%, 36%);
  --accent: hsl(75, 52%, 38%);
  --accent-fg: hsl(0,0%,100%);
  --border: hsl(32, 16%, 90%);
  --gold: hsl(40,70%,55%);
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-glow));
  --shadow-soft: 0 4px 24px -4px hsl(0 0% 0% / 0.08);
  --shadow-elevated: 0 12px 40px -8px hsl(0 0% 0% / 0.12);
  --shadow-primary: 0 8px 30px -6px hsl(73 63% 47% / 0.28);
  --text-on-dark: #fff;
  --text-on-dark-muted: rgba(255, 255, 255, 0.86);
  --text-on-light: var(--fg);
  --text-on-light-muted: hsl(220, 14%, 34%);
  --font-body: 1.125rem;
  --font-small: 0.9375rem;
  --font-label: 0.9375rem;
  --font-nav: 1.0625rem;
  --font-button: 1.0625rem;
}
body.fn-site {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--font-body);
  background: linear-gradient(180deg, hsl(32 24% 97%) 0%, hsl(30 18% 95%) 100%);
  color: var(--text-on-light);
  line-height: 1.65;
}
body.fn-site > :not(.fn-navbar):not(.fn-site-footer):not(.modal):not(#loadingDiv):not(#ativar_load) {
  position: relative;
  z-index: 1;
}
body.fn-site h1,
body.fn-site h2,
body.fn-site h3,
body.fn-site h4,
body.fn-site h5,
body.fn-site h6 {
  font-family: 'Playfair Display', serif;
}
body.fn-site img { max-width: 100%; display: block; }
body.fn-site a { color: inherit; }
body.fn-site .fn-navbar .fn-nav-dropdown a { color: var(--fg); }
body.fn-site .fn-navbar .fn-nav-dropdown a:hover { color: var(--primary); }
body.fn-site a.fn-btn-outline,
body.fn-site .fn-hero a.fn-btn-outline { color: #fff; }
body.fn-site a.fn-btn-primary,
body.fn-site a.fn-btn-cta,
body.fn-site a.fn-btn-featured,
body.fn-site a.fn-btn-cart,
body.fn-site a.fn-btn-album { color: var(--primary-fg); }
.fn-site .container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }

.fn-navbar { position: sticky; top: 0; z-index: 50; background: #000; color: var(--text-on-dark); transition: background .3s, box-shadow .3s; border: none; box-shadow: none; }
.fn-navbar.scrolled { background: rgba(0,0,0,.95); backdrop-filter: blur(12px); box-shadow: 0 8px 24px rgba(0,0,0,.28); }
.fn-navbar-inner { display: flex; align-items: center; width: 100%; height: 5rem; position: relative; border: none; }
.fn-navbar-shell { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 1rem; min-width: 0; }
.fn-user-login,
.fn-user-menu { position: relative; }
.fn-navbar-logo { display: flex; align-items: center; flex-shrink: 0; margin-right: 1.5rem; text-decoration: none; }
.fn-navbar-logo img { height: 3.75rem; width: auto; object-fit: contain; }
.fn-navbar-links { display: flex; align-items: center; gap: 1.5rem; font-size: var(--font-nav); font-weight: 500; list-style: none; margin: 0; padding: 0; }
.fn-navbar-links > li { position: relative; }
.fn-navbar-links > li > a { text-decoration: none; color: #fff; transition: color .2s, text-decoration-color .2s; }
.fn-navbar-links > li > a:not(.fn-btn-cta):not(.fn-cart-btn):hover { text-decoration: underline; text-decoration-color: var(--primary-glow); text-decoration-thickness: 2px; text-underline-offset: .2rem; }
.fn-navbar-links > li > a.fn-btn-cta:hover { color: var(--primary-fg) !important; text-decoration: none; }
.fn-nav-products:hover .fn-nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.fn-nav-products > button,
.fn-nav-products #fnProductsToggle { background: none; border: none; cursor: pointer; color: #fff; font-size: var(--font-nav); font-weight: 500; display: flex; align-items: center; gap: 4px; font-family: inherit; transition: color .2s, text-decoration-color .2s; text-decoration: none; }
.fn-nav-products > button:hover,
.fn-nav-products #fnProductsToggle:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--primary-glow); text-decoration-thickness: 2px; text-underline-offset: .2rem; }
.fn-nav-dropdown { position: absolute; top: 100%; left: 0; margin-top: .5rem; width: 14rem; background: var(--card); border-radius: .75rem; box-shadow: var(--shadow-elevated); border: 1px solid var(--border); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .2s; padding: .5rem 0; backdrop-filter: blur(12px); list-style: none; z-index: 60; }
.fn-nav-dropdown a { display: block; padding: .625rem 1rem; font-size: var(--font-nav); color: var(--fg); transition: all .2s; text-decoration: none; }
.fn-nav-dropdown a:hover { background: var(--primary-soft); color: var(--primary); }
.fn-btn-cta { display: inline-flex; align-items: center; padding: .625rem 1.5rem; background: var(--gradient-primary); color: var(--primary-fg) !important; border-radius: 9999px; font-weight: 600; font-size: var(--font-button); transition: all .3s; border: none; cursor: pointer; font-family: inherit; text-decoration: none; }
.fn-btn-cta:hover { box-shadow: var(--shadow-primary); color: var(--primary-fg); }
.fn-cart-btn { position: relative; background: none; border: none; color: #fff; cursor: pointer; font-size: 1.25rem; transition: color .2s; text-decoration: none; display: inline-flex; align-items: center; }
.fn-cart-btn:hover { color: #fff; }
.fn-cart-badge { position: absolute; top: -8px; right: -8px; background: var(--gradient-primary); color: var(--primary-fg); font-size: 10px; font-weight: 700; min-width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 0 4px; }
.fn-mobile-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; font-size: 1.5rem; }
.fn-login-dropdown { position: absolute; top: 100%; right: 0; margin-top: .5rem; width: 18rem; background: var(--card); border-radius: .75rem; box-shadow: var(--shadow-elevated); border: 1px solid var(--border); padding: 1rem; display: none; z-index: 60; color: var(--text-on-light); }
.fn-login-dropdown.open { display: block; }
.fn-login-dropdown p { color: var(--fg); }
.fn-login-dropdown .form-group { margin-bottom: .75rem; }
.fn-login-dropdown label { display: block; margin-bottom: .25rem; font-size: var(--font-small); color: var(--text-on-light); }
.fn-login-dropdown .form-control { width: 100%; padding: .625rem .75rem; border-radius: .5rem; border: 1px solid var(--border); font-family: inherit; color: var(--text-on-light); background: #fff; }
.fn-login-dropdown a { color: var(--primary); }
.fn-login-dropdown .btn { width: 100%; border: none; border-radius: 9999px; padding: .625rem; font-weight: 600; cursor: pointer; background: var(--gradient-primary); color: var(--primary-fg); }
.fn-user-menu .fn-nav-dropdown { right: 0; left: auto; }

.fn-hero { position: relative; min-height: 650px; overflow: hidden; }
.fn-hero img.fn-hero-bg { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transform: scale(1.05); }
.fn-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.8), rgba(0,0,0,.5), rgba(0,0,0,.2)); }
.fn-hero-overlay2 { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.4), transparent); }
.fn-hero-content { position: relative; z-index: 2; display: flex; align-items: center; min-height: 650px; }
.fn-hero-text { max-width: 560px; }
.fn-hero-text .label { color: rgba(255,255,255,.9); font-size: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1.25rem; }
.fn-hero-text h1 { font-size: 4.25rem; font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 1.5rem; }
.fn-hero-text h1 span { color: hsl(88, 64%, 78%); background: none; -webkit-text-fill-color: currentColor; font-style: italic; }
.fn-hero-text p { color: rgba(255,255,255,.9); font-size: 1.25rem; margin-bottom: 2.5rem; line-height: 1.7; max-width: 440px; }
.fn-hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.fn-btn-primary { display: inline-flex; align-items: center; padding: .875rem 2rem; background: var(--gradient-primary); color: var(--primary-fg); border-radius: 9999px; font-weight: 600; font-size: var(--font-button); border: none; cursor: pointer; font-family: inherit; transition: all .3s; text-decoration: none; }
.fn-btn-primary:hover { box-shadow: var(--shadow-primary); color: var(--primary-fg); }
.fn-btn-outline { display: inline-flex; align-items: center; padding: .875rem 2rem; background: transparent; border: 1px solid rgba(255,255,255,.25); color: #fff; border-radius: 9999px; font-weight: 600; font-size: var(--font-button); cursor: pointer; font-family: inherit; backdrop-filter: blur(4px); transition: all .3s; text-decoration: none; }
.fn-btn-outline:hover { background: rgba(255,255,255,.1); color: #fff; }

.fn-home { overflow: hidden; }
.fn-home a,
.fn-home a:hover,
.fn-home a:focus,
.fn-home a:active,
.fn-home button,
.fn-home button:hover,
.fn-home button:focus { text-decoration: none; }
.fn-home .fn-section-header h2::after { display: none; }
.fn-home .old-price,
.fn-home .fn-featured-old-price,
.fn-home .album-old { text-decoration: line-through; }
.fn-home > section { position: relative; }
.fn-home > section:not(.fn-hero) { padding-top: 5.5rem; padding-bottom: 5.5rem; color: var(--fg); }
.fn-home > .fn-hero { padding: 0; }
.fn-home > .fn-featured-product { background: linear-gradient(180deg, rgba(255,255,255,.72) 0%, hsl(73 63% 47% / .06) 100%); }
.fn-home > .fn-packages { background: #fff; }
.fn-home > .fn-sizes { background: linear-gradient(180deg, hsl(32 18% 94% / .9) 0%, hsl(32 24% 97%) 100%); }
.fn-home > .fn-albums { background: linear-gradient(180deg, #fff 0%, hsl(32 18% 96%) 100%); }
.fn-hero .fn-hero-bg:not(:first-of-type) { display: none; }
.fn-section-header h2::after { content: ''; display: block; width: 4.5rem; height: 3px; margin: 1rem auto 0; border-radius: 9999px; background: var(--gradient-primary); }
.fn-home .fn-pkg-card,
.fn-home .fn-size-card,
.fn-home .fn-album-card,
.fn-home .fn-featured-card { box-shadow: var(--shadow-soft); }
.fn-home .fn-pkg-card:hover,
.fn-home .fn-size-card:hover,
.fn-home .fn-album-card:hover,
.fn-home .fn-featured-card:hover { box-shadow: var(--shadow-elevated); }
.fn-home .fn-size-card span[style*="color:red"] { color: var(--primary) !important; font-weight: 600; }
.fn-featured-product { position: relative; overflow: hidden; }

.fn-featured-product .deco1 { position: absolute; top: 0; right: 0; width: 24rem; height: 24rem; background: hsl(73 63% 47% / .05); border-radius: 50%; filter: blur(60px); transform: translate(50%,-50%); }
.fn-featured-product .deco2 { position: absolute; bottom: 0; left: 0; width: 16rem; height: 16rem; background: hsl(73 63% 47% / .05); border-radius: 50%; filter: blur(60px); transform: translate(-50%,50%); }
.fn-featured-label { text-align: center; margin-bottom: 2.5rem; }
.fn-featured-label span { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: 3px; }
.fn-featured-card { display: flex; align-items: stretch; background: var(--card); border-radius: 1.5rem; border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-elevated); max-width: 960px; margin: 0 auto; position: relative; z-index: 1; }
.fn-featured-img { width: 50%; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; background: hsl(32 18% 94%); min-height: 26rem; padding: 1rem; }
.fn-featured-img img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform .7s; }
.fn-featured-card:hover .fn-featured-img img { transform: scale(1.03); }
.fn-featured-img .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.3), transparent); opacity: 0; transition: opacity .5s; }
.fn-featured-card:hover .fn-featured-img .overlay { opacity: 1; }
.fn-featured-badge { position: absolute; top: 1rem; left: 1rem; background: var(--gradient-primary); color: var(--primary-fg); font-size: .7rem; font-weight: 700; padding: .5rem 1rem; border-radius: 9999px; text-transform: uppercase; letter-spacing: 1px; box-shadow: var(--shadow-primary); }
.fn-featured-info { width: 50%; padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.fn-featured-stars { color: var(--gold); font-size: 1rem; margin-bottom: .75rem; display: flex; align-items: center; gap: 2px; }
.fn-featured-stars .count { color: var(--muted); font-size: .75rem; margin-left: .5rem; font-weight: 500; }
.fn-featured-info h3 { font-size: 2rem; font-weight: 700; margin-bottom: .75rem; color: var(--text-on-light); }
.fn-featured-info > p { font-size: 1.0625rem; color: var(--text-on-light-muted); margin-bottom: 1.5rem; line-height: 1.6; }
.fn-featured-info ul { list-style: none; margin-bottom: 1.5rem; padding: 0; }
.fn-featured-info ul li { font-size: 1.0625rem; color: var(--text-on-light-muted); padding: .35rem 0; display: flex; align-items: center; gap: .625rem; }
.fn-featured-info ul li .check { width: 1.25rem; height: 1.25rem; border-radius: 50%; background: var(--primary-soft); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: .7rem; flex-shrink: 0; }
.fn-featured-sizes { font-size: var(--font-small); color: var(--text-on-light-muted); margin-bottom: .25rem; }
.fn-featured-sizes strong { color: var(--text-on-light); }
.fn-featured-price-box { margin-top: 1.25rem; margin-bottom: 1.5rem; padding: 1rem; border-radius: 1rem; background: var(--primary-soft); border: 1px solid var(--primary-soft-border); }
.fn-featured-old-price { color: var(--text-on-light-muted); font-size: .9375rem; text-decoration: line-through; }
.fn-featured-price { font-size: 2rem; font-weight: 700; color: var(--accent); background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin: 0; }
.fn-btn-featured { display: inline-flex; align-items: center; justify-content: center; gap: .625rem; background: var(--gradient-primary); color: var(--primary-fg); padding: 1rem 2rem; border-radius: 9999px; font-weight: 600; font-size: var(--font-button); border: none; cursor: pointer; font-family: inherit; transition: all .3s; text-decoration: none; }
.fn-btn-featured:hover { box-shadow: var(--shadow-primary); color: var(--primary-fg); }

.fn-packages { padding: 6rem 0; }
.fn-section-header { text-align: center; margin-bottom: 4rem; }
.fn-section-header .label { display: block; color: var(--primary); font-size: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: 3px; margin-bottom: .75rem; }
.fn-section-header h2 { font-size: 3rem; font-weight: 700; margin-bottom: .75rem; color: var(--text-on-light); }
.fn-section-header p { color: var(--text-on-light-muted); font-size: 1.25rem; }
.fn-packages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.fn-pkg-card { background: var(--card); border-radius: 1rem; border: 1px solid var(--border); overflow: hidden; transition: all .5s; color: var(--text-on-light); }
.fn-pkg-card:hover { box-shadow: var(--shadow-elevated); transform: translateY(-4px); }
.fn-pkg-card .fn-pkg-img { height: 14rem; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; background: hsl(32 18% 94%); padding: .75rem; }
.fn-pkg-card .fn-pkg-img img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform .7s; }
.fn-pkg-card:hover .fn-pkg-img img { transform: scale(1.03); }
.fn-pkg-img .img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.18), transparent); pointer-events: none; }
.fn-promo-badge { position: absolute; top: .75rem; left: .75rem; background: var(--gradient-primary); color: var(--primary-fg); font-size: var(--font-small); font-weight: 700; padding: .375rem .75rem; border-radius: 9999px; display: flex; align-items: center; gap: 4px; box-shadow: var(--shadow-primary); }
.fn-qty-badge { position: absolute; bottom: .75rem; right: .75rem; background: rgba(255,255,255,.95); backdrop-filter: blur(4px); color: var(--text-on-light); font-size: var(--font-small); font-weight: 700; padding: .375rem .75rem; border-radius: 9999px; }
.fn-pkg-card .fn-pkg-body { padding: 1.5rem; }
.fn-pkg-card h3 { font-size: 1.3125rem; font-weight: 600; font-family: 'DM Sans', sans-serif; margin-bottom: .25rem; color: var(--text-on-light); }
.fn-pkg-card .old-price { color: var(--text-on-light-muted); font-size: 1rem; text-decoration: line-through; margin: 0; }
.fn-pkg-card .price { font-size: 1.75rem; font-weight: 700; color: var(--accent); background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-top: .25rem; }
.fn-pkg-card .each { color: var(--text-on-light-muted); font-size: var(--font-small); margin-top: .25rem; margin-bottom: 1.25rem; }
.fn-btn-cart { width: 100%; display: flex; align-items: center; justify-content: center; gap: .5rem; background: var(--gradient-primary); color: var(--primary-fg); padding: .75rem; border-radius: 9999px; font-weight: 600; border: none; cursor: pointer; font-size: var(--font-button); font-family: inherit; transition: all .3s; text-decoration: none; }
.fn-btn-cart:hover { box-shadow: var(--shadow-primary); color: var(--primary-fg); }

.fn-sizes { padding: 6rem 0; background: hsl(30 15% 93% / .5); position: relative; overflow: hidden; }
.fn-sizes .deco { position: absolute; width: 18rem; height: 18rem; background: hsl(73 63% 47% / .05); border-radius: 50%; filter: blur(60px); }
.fn-sizes .deco1 { top: 5rem; left: 0; }
.fn-sizes .deco2 { bottom: 5rem; right: 0; }
.fn-sizes-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-bottom: 6rem; position: relative; z-index: 1; }
.fn-sizes-grid:last-of-type { margin-bottom: 0; }
.fn-size-card { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 1.25rem; text-align: center; cursor: pointer; transition: all .5s; text-decoration: none; display: block; color: var(--text-on-light); }
.fn-size-card:hover { box-shadow: var(--shadow-elevated); transform: translateY(-4px); color: var(--text-on-light); }
.fn-size-card .sz { font-size: 1.75rem; font-weight: 700; color: var(--text-on-light); transition: all .3s; margin: 0; }
.fn-size-card .type { font-size: var(--font-small); text-transform: uppercase; color: var(--text-on-light-muted); letter-spacing: 1px; margin-top: .25rem; }
.fn-size-card .sz-divider { margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--border); }
.fn-size-card:hover .sz { color: var(--primary); }
.fn-size-card .sprice { font-size: .9375rem; font-weight: 600; color: var(--primary); margin: 0; }
.fn-size-card .sprice-label { font-size: .6875rem; color: var(--text-on-light-muted); margin: 0; }
.fn-size-card .note { font-size: .6875rem; color: var(--accent); margin-top: .5rem; font-weight: 600; background: var(--primary-soft); padding: .25rem .5rem; border-radius: 9999px; display: inline-block; }

.fn-albums { padding: 6rem 0; }
.fn-album-card { display: flex; align-items: stretch; background: var(--card); border-radius: 1.5rem; border: 1px solid var(--border); overflow: hidden; margin-bottom: 3rem; box-shadow: var(--shadow-soft); transition: all .5s; color: var(--text-on-light); }
.fn-album-card:hover { box-shadow: var(--shadow-elevated); transform: translateY(-4px); }
.fn-album-card.reverse { flex-direction: row-reverse; }
.fn-album-card .fn-album-img { width: 50%; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; background: hsl(32 18% 94%); min-height: 28rem; padding: 1rem; }
.fn-album-card .fn-album-img img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform .7s; min-height: 0; }
.fn-album-card:hover .fn-album-img img { transform: scale(1.03); }
.fn-album-card .fn-album-info { width: 50%; padding: 2rem 3rem; display: flex; flex-direction: column; justify-content: center; }
.fn-album-card h3 { font-size: 2rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text-on-light); }
.fn-album-card ul { list-style: none; margin-bottom: 1.5rem; padding: 0; }
.fn-album-card ul li { font-size: 1.0625rem; color: var(--text-on-light-muted); padding: .4rem 0; display: flex; align-items: flex-start; gap: .625rem; }
.fn-album-card ul li .check-icon { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.fn-album-card .sizes-info { font-size: .9375rem; color: var(--text-on-light-muted); margin-bottom: .25rem; }
.fn-album-card .sizes-info strong { color: var(--text-on-light); }
.fn-album-price-box { margin-top: 1.25rem; padding: 1rem; border-radius: 1rem; background: var(--primary-soft); border: 1px solid var(--primary-soft-border); }
.fn-album-card .album-old { color: var(--text-on-light-muted); font-size: .9375rem; text-decoration: line-through; }
.fn-album-card .album-price { font-size: 2rem; font-weight: 700; color: var(--accent); background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin: 0; }
.fn-btn-album { margin-top: 1.5rem; display: inline-flex; align-items: center; justify-content: center; gap: .625rem; background: var(--gradient-primary); color: var(--primary-fg); padding: .875rem 2rem; border-radius: 9999px; font-weight: 600; font-size: var(--font-button); border: none; cursor: pointer; font-family: inherit; transition: all .3s; text-decoration: none; }
.fn-btn-album:hover { box-shadow: var(--shadow-primary); color: var(--primary-fg); }

.fn-modal-overlay { display: none; position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 1rem; }
.fn-modal-overlay.active { display: flex; }
.fn-modal { background: var(--card); border-radius: 1.5rem; width: 100%; max-width: 640px; max-height: 90vh; overflow-y: auto; border: 1px solid var(--border); box-shadow: 0 20px 60px rgba(0,0,0,.2); }
.fn-modal-header { padding: 1.5rem; border-bottom: 1px solid var(--border); position: relative; }
.fn-modal-close { position: absolute; top: 1rem; right: 1rem; width: 2rem; height: 2rem; border-radius: 50%; background: var(--secondary); border: none; cursor: pointer; font-size: 1rem; color: var(--muted); display: flex; align-items: center; justify-content: center; transition: all .2s; }
.fn-modal-close:hover { color: var(--fg); background: hsl(30 10% 88%); }
.fn-modal-header .label { font-size: .7rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; display: flex; align-items: center; gap: 6px; }
.fn-modal-header h2 { font-size: 1.5rem; font-weight: 700; margin: .5rem 0 .25rem; }
.fn-modal-header > p { font-size: .875rem; color: var(--muted); }
.fn-modal-progress { display: flex; gap: .25rem; margin-top: 1.25rem; }
.fn-modal-progress-bar { flex: 1; display: flex; flex-direction: column; align-items: center; gap: .375rem; }
.fn-modal-progress-bar .bar { width: 100%; height: 6px; border-radius: 9999px; background: var(--secondary); transition: all .3s; }
.fn-modal-progress-bar .bar.active { background: var(--gradient-primary); }
.fn-modal-progress-bar .bar-label { font-size: .625rem; font-weight: 500; color: var(--muted); transition: color .3s; }
.fn-modal-progress-bar .bar-label.active { color: var(--primary); }
.fn-modal-body { padding: 1.5rem; }
.fn-step-content { display: none; }
.fn-step-content.active { display: block; }
.fn-step-title { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.fn-step-title .icon-circle { width: 2rem; height: 2rem; border-radius: 50%; background: hsl(73 63% 47% / .1); display: flex; align-items: center; justify-content: center; font-size: .875rem; }
.fn-step-title h3 { font-size: 1.125rem; font-weight: 600; font-family: 'DM Sans', sans-serif; margin: 0; }
.fn-step-desc { font-size: .875rem; color: var(--muted); margin-bottom: 1.25rem; }
.fn-city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .625rem; margin-bottom: 1rem; }
.fn-city-btn { display: flex; align-items: center; gap: .625rem; padding: .75rem; border-radius: .75rem; border: 1px solid var(--border); background: none; cursor: pointer; font-size: .875rem; font-family: inherit; text-align: left; transition: all .2s; }
.fn-city-btn:hover { border-color: hsl(73 63% 47% / .3); background: hsl(30 10% 94% / .5); }
.fn-city-btn.selected { border-color: var(--primary); background: hsl(73 63% 47% / .05); box-shadow: 0 0 0 1px hsl(73 63% 47% / .2); }
.fn-city-btn .emoji { font-size: 1.1rem; }
.fn-city-name { font-weight: 600; color: var(--fg); font-size: .875rem; line-height: 1.2; }
.fn-city-country { font-size: .6875rem; color: var(--muted); }
.fn-custom-city-btn { display: flex; align-items: center; gap: .625rem; width: 100%; padding: .75rem; border-radius: .75rem; border: 1px solid var(--border); background: none; cursor: pointer; font-size: .875rem; font-family: inherit; transition: all .2s; }
.fn-custom-city-btn.selected { border-color: var(--primary); background: hsl(73 63% 47% / .05); box-shadow: 0 0 0 1px hsl(73 63% 47% / .2); }
.fn-custom-city-input { margin-top: .75rem; width: 100%; padding: .75rem; border-radius: .75rem; border: 1px solid var(--border); font-size: .875rem; font-family: inherit; background: var(--bg); color: var(--fg); transition: all .2s; }
.fn-custom-city-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px hsl(73 63% 47% / .1); }
.fn-size-grid-modal { display: grid; grid-template-columns: repeat(2, 1fr); gap: .625rem; margin-bottom: 1rem; }
.fn-size-btn { padding: 1rem; border-radius: .75rem; border: 1px solid var(--border); background: none; cursor: pointer; text-align: left; font-family: inherit; transition: all .2s; }
.fn-size-btn:hover { border-color: hsl(73 63% 47% / .3); background: hsl(30 10% 94% / .5); }
.fn-size-btn.selected { border-color: var(--primary); background: hsl(73 63% 47% / .05); box-shadow: 0 0 0 1px hsl(73 63% 47% / .2); }
.fn-size-btn .sz-label { font-size: 1.125rem; font-weight: 700; margin: 0; }
.fn-size-btn .sz-pages { font-size: .75rem; color: var(--muted); margin: 0; }
.fn-size-btn .sz-price { font-size: .875rem; font-weight: 600; color: var(--primary); margin-top: .375rem; }
.fn-page-selector { margin: 1.25rem 0 1rem; padding: 1rem; background: hsl(30 10% 94% / .3); border-radius: 1rem; border: 1px solid var(--border); }
.fn-page-selector label { font-size: .875rem; font-weight: 600; display: flex; align-items: center; justify-content: space-between; margin-bottom: .75rem; }
.fn-page-selector label .pg-val { color: var(--primary); font-size: 1.125rem; }
.fn-page-controls { display: flex; align-items: center; gap: .75rem; }
.fn-page-btn { width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 1px solid var(--border); background: none; cursor: pointer; font-size: 1.1rem; font-weight: 700; font-family: inherit; transition: all .2s; }
.fn-page-btn:hover { background: var(--secondary); }
.fn-page-range { flex: 1; accent-color: var(--primary); }
.fn-page-minmax { display: flex; justify-content: space-between; font-size: .7rem; color: var(--muted); margin-top: .375rem; }
.fn-how-it-works { background: hsl(73 63% 47% / .05); border: 1px solid hsl(73 63% 47% / .1); border-radius: 1rem; padding: 1.25rem; margin-bottom: 1.25rem; }
.fn-how-it-works h4 { font-size: .9rem; font-weight: 600; margin-bottom: .75rem; display: flex; align-items: center; gap: .5rem; font-family: 'DM Sans', sans-serif; }
.fn-how-it-works ul { list-style: none; padding: 0; margin: 0; }
.fn-how-it-works li { font-size: .875rem; color: var(--muted); padding: .35rem 0; display: flex; align-items: flex-start; gap: .625rem; }
.fn-how-it-works li .hw-check { color: var(--primary); font-weight: 700; flex-shrink: 0; }
.fn-summary-box { background: hsl(30 10% 94% / .3); border-radius: 1rem; padding: 1.25rem; margin-bottom: 1.25rem; border: 1px solid var(--border); }
.fn-summary-box .summary-title { font-size: .875rem; font-weight: 600; margin-bottom: .75rem; }
.fn-summary-box .summary-row { display: flex; justify-content: space-between; font-size: .875rem; color: var(--muted); padding: .3rem 0; }
.fn-summary-box .summary-row strong { color: var(--fg); }
.fn-summary-box .summary-total { display: flex; justify-content: space-between; font-size: .875rem; color: var(--muted); padding-top: .5rem; margin-top: .5rem; border-top: 1px solid var(--border); }
.fn-summary-box .summary-total strong { color: var(--primary); font-size: 1.125rem; }
.fn-modal-actions { display: flex; gap: .75rem; margin-top: 1.5rem; }
.fn-btn-back { flex: 1; padding: .875rem; border-radius: 9999px; border: 1px solid var(--border); background: none; font-weight: 600; cursor: pointer; font-family: inherit; font-size: var(--font-button); color: var(--text-on-light); transition: all .2s; }
.fn-btn-back:hover { background: var(--secondary); }
.fn-btn-next { flex: 1; padding: .875rem; border-radius: 9999px; border: none; background: var(--gradient-primary); color: var(--primary-fg); font-weight: 600; cursor: pointer; font-family: inherit; font-size: .875rem; transition: all .3s; }
.fn-btn-next:hover { box-shadow: var(--shadow-primary); }
.fn-btn-next:disabled { opacity: .4; cursor: not-allowed; }
.fn-btn-whatsapp { flex: 1; padding: .875rem; border-radius: 9999px; border: none; background: var(--gradient-primary); color: var(--primary-fg); font-weight: 600; cursor: pointer; font-family: inherit; font-size: .875rem; display: flex; align-items: center; justify-content: center; gap: .5rem; transition: all .3s; }
.fn-btn-whatsapp:hover { box-shadow: var(--shadow-primary); }

.fn-site-footer { background: var(--fg); color: var(--text-on-dark); position: relative; overflow: hidden; margin-top: 0; }
.fn-footer-accent { width: 100%; height: 4px; background: var(--gradient-primary); }
.fn-footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; padding: 4rem 0; }
.fn-footer-grid h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.25rem; color: #fff; }
.fn-footer-grid ul { list-style: none; padding: 0; margin: 0; }
.fn-footer-grid ul li { padding: .35rem 0; }
.fn-footer-grid ul li a { font-size: 1rem; color: var(--text-on-dark-muted); display: flex; align-items: center; gap: .5rem; transition: color .2s; text-decoration: none; }
.fn-footer-grid ul li a .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--primary); }
.fn-footer-grid ul li a:hover { color: #fff; }
.fn-footer-grid .contact p { font-size: 1rem; color: var(--text-on-dark-muted); margin-bottom: .5rem; display: flex; align-items: flex-start; gap: .75rem; }
.fn-footer-grid .contact .icon { color: var(--primary); flex-shrink: 0; }
.fn-social-icons { display: flex; gap: .75rem; margin-top: 1.25rem; }
.fn-social-icon { width: 2.75rem; height: 2.75rem; border-radius: 50%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: all .3s; font-size: 1.1rem; text-decoration: none; }
.fn-social-icon:hover { background: var(--primary); border-color: var(--primary); }
.fn-footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding: 1.5rem 0; text-align: center; font-size: 1rem; color: rgba(255,255,255,.72); display: flex; align-items: center; justify-content: center; gap: .25rem; }
.fn-footer-bottom .heart { color: var(--primary); }

.fn-btn-cta,
.fn-btn-primary,
.fn-btn-featured,
.fn-btn-cart,
.fn-btn-album,
.fn-btn-next,
.fn-btn-whatsapp,
.fn-login-dropdown .btn { transition: transform .2s ease, box-shadow .2s ease; }
.fn-btn-cta:hover,
.fn-btn-primary:hover,
.fn-btn-featured:hover,
.fn-btn-cart:hover,
.fn-btn-album:hover,
.fn-btn-next:hover,
.fn-btn-whatsapp:hover,
.fn-login-dropdown .btn:hover { transform: translateY(-2px); }
.fn-btn-cta:active,
.fn-btn-primary:active,
.fn-btn-featured:active,
.fn-btn-cart:active,
.fn-btn-album:active,
.fn-btn-next:active,
.fn-btn-whatsapp:active,
.fn-login-dropdown .btn:active { transform: translateY(0); }

@media (max-width: 1024px) {
  .fn-packages-grid { grid-template-columns: repeat(2, 1fr); }
  .fn-sizes-grid { grid-template-columns: repeat(3, 1fr); }
  .fn-navbar-shell { padding-right: 0; }
  .fn-navbar-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(0,0,0,.98); flex-direction: column; align-items: stretch; padding: 1rem; gap: 0; border-top: 1px solid rgba(255,255,255,.06); }
  .fn-navbar-links.open { display: flex; }
  .fn-navbar-links > li { width: 100%; }
  .fn-navbar-links > li > a:not(.fn-btn-cta):not(.fn-cart-btn) { display: inline-block; padding: .75rem 0; }
  .fn-navbar-links > li > a.fn-btn-cta,
  .fn-navbar-links > li > a.fn-cart-btn { display: block; padding: .75rem 0; }
  .fn-nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; display: none; width: 100%; margin-top: 0; box-shadow: none; border: none; background: transparent; }
  .fn-nav-products.open .fn-nav-dropdown { display: block; }
  .fn-nav-dropdown a { color: rgba(255,255,255,.9); }
  body.fn-site .fn-navbar .fn-nav-dropdown a { color: rgba(0, 0, 0, 0.9); }
  body.fn-site .fn-navbar .fn-nav-dropdown a:hover { color: #000000; }
  .fn-nav-dropdown a:hover { color: #fff; background: rgba(255,255,255,.06); }
  .fn-featured-img { min-height: 18rem; }
  .fn-album-card .fn-album-img { min-height: 18rem; }
  .fn-mobile-toggle { display: block; }
  .fn-featured-card { flex-direction: column; }
  .fn-featured-img, .fn-featured-info { width: 100%; }
  .fn-city-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .fn-hero-text h1 { font-size: 2.75rem; }
  .fn-hero, .fn-hero-content { min-height: 520px; }
  .fn-album-card { flex-direction: column !important; }
  .fn-album-card .fn-album-img, .fn-album-card .fn-album-info { width: 100%; }
  .fn-album-card .fn-album-img img { min-height: 0; }
  .fn-album-card .fn-album-info { padding: 1.5rem; }
  .fn-footer-grid { grid-template-columns: 1fr; }
  .fn-sizes-grid { grid-template-columns: repeat(2, 1fr); }
  .fn-packages-grid { grid-template-columns: 1fr; }
  .fn-featured-img { min-height: 16rem; }
  .fn-album-card .fn-album-img { min-height: 16rem; }
  .fn-size-grid-modal { grid-template-columns: 1fr; }
  .fn-section-header h2 { font-size: 2.25rem; }
}
