* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--primary: #2563EB;
--dark: #0F172A;
--light: #F8FAFC;
--gray: #64748B;
--white: #FFFFFF;
--accent: #3B82F6;
--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
--shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

body {
font-family: 'Outfit', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--dark);
background: var(--white);
overflow-x: hidden;
}

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

.header {
background: var(--white);
padding: 0;
box-shadow: none;
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 1px solid var(--light);
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
padding: 24px 0;
}

.logo {
font-family: 'Space Grotesk', sans-serif;
font-size: 22px;
font-weight: 700;
color: var(--dark);
text-decoration: none;
letter-spacing: -0.5px;
}

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

.menu-toggle span {
width: 25px;
height: 2px;
background: var(--dark);
margin: 3px 0;
transition: 0.3s;
}

.nav {
display: flex;
gap: 25px;
}

.nav-link {
font-size: 15px;
font-weight: 500;
color: var(--gray);
text-decoration: none;
padding: 8px 0;
margin: 0 20px;
transition: color 0.2s;
position: relative;
}

.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 1px;
background: var(--dark);
transform: scaleX(0);
transition: transform 0.3s;
}

.nav-link:hover,
.nav-link.active {
color: var(--dark);
}

.nav-link.active::after {
transform: scaleX(1);
}

.hero {
background: var(--dark);
color: var(--white);
padding: 140px 0;
text-align: center;
position: relative;
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 800px;
height: 800px;
background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
animation: float 20s ease-in-out infinite;
}

.hero::after {
content: '';
position: absolute;
bottom: -50%;
left: -20%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
0%, 100% { transform: translate(0, 0); }
50% { transform: translate(50px, 50px); }
}

.hero-content {
position: relative;
z-index: 3;
}

.hero-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 64px;
font-weight: 700;
margin-bottom: 24px;
line-height: 1.1;
letter-spacing: -2px;
}

.hero-content p {
font-size: 20px;
margin-bottom: 40px;
max-width: 650px;
margin-left: auto;
margin-right: auto;
opacity: 0.8;
line-height: 1.6;
font-weight: 300;
}

.btn-primary,
.btn-secondary {
display: inline-block;
padding: 16px 48px;
font-size: 15px;
font-weight: 500;
text-decoration: none;
border-radius: 0;
transition: all 0.3s;
border: none;
cursor: pointer;
position: relative;
letter-spacing: 0.5px;
}

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

.btn-primary::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: var(--white);
transform: scaleX(0);
transition: transform 0.3s;
}

.btn-primary:hover::after {
transform: scaleX(1);
}

.btn-primary:hover {
background: var(--accent);
}

.btn-secondary {
background: transparent;
color: var(--white);
border: 1px solid var(--white);
}

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

.features {
padding: 120px 0;
background: var(--white);
}

.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1px;
background: var(--light);
border: 1px solid var(--light);
}

.feature-card {
background: var(--white);
padding: 60px 40px;
text-align: center;
transition: all 0.3s;
position: relative;
}

.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--dark);
opacity: 0;
transition: opacity 0.3s;
z-index: 0;
}

.feature-card:hover::before {
opacity: 1;
}

.feature-card > * {
position: relative;
z-index: 1;
transition: color 0.3s;
}

.feature-card:hover > * {
color: var(--white);
}

.feature-card i {
font-size: 40px;
color: var(--primary);
margin-bottom: 24px;
}

.feature-card h3 {
font-size: 18px;
font-weight: 600;
margin-bottom: 12px;
color: var(--dark);
letter-spacing: -0.3px;
}

.feature-card p {
font-size: 15px;
color: var(--gray);
line-height: 1.6;
font-weight: 300;
}

.about {
padding: 0;
background: var(--white);
position: relative;
}

.about-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0;
align-items: stretch;
}

.about-image {
position: relative;
min-height: 600px;
overflow: hidden;
}

.about-image img {
width: 100%;
height: 100%;
object-fit: cover;
filter: grayscale(20%);
}

.about-text {
padding: 100px 80px;
background: var(--light);
display: flex;
flex-direction: column;
justify-content: center;
}

.about-text h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 48px;
font-weight: 700;
margin-bottom: 32px;
color: var(--dark);
line-height: 1.1;
letter-spacing: -1.5px;
}

.about-text p {
font-size: 16px;
color: var(--gray);
margin-bottom: 24px;
line-height: 1.8;
font-weight: 300;
}

.categories {
padding: 120px 0;
background: var(--white);
}

.categories h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 48px;
font-weight: 700;
text-align: center;
margin-bottom: 80px;
color: var(--dark);
letter-spacing: -1.5px;
}

.categories-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1px;
background: var(--light);
border: 1px solid var(--light);
}

.category-card {
background: var(--white);
padding: 80px 60px;
text-align: left;
transition: all 0.3s;
position: relative;
}

.category-card::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 3px;
height: 100%;
background: var(--primary);
transform: scaleY(0);
transition: transform 0.3s;
}

.category-card:hover::after {
transform: scaleY(1);
}

.category-card:hover {
background: var(--light);
}

.category-card i {
font-size: 36px;
color: var(--primary);
margin-bottom: 24px;
}

.category-card h3 {
font-size: 24px;
font-weight: 600;
margin-bottom: 16px;
color: var(--dark);
letter-spacing: -0.5px;
}

.category-card p {
font-size: 15px;
color: var(--gray);
margin-bottom: 24px;
line-height: 1.6;
font-weight: 300;
}

.category-link {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 14px;
font-weight: 500;
color: var(--dark);
text-decoration: none;
transition: gap 0.3s;
letter-spacing: 0.5px;
text-transform: uppercase;
}

.category-link::after {
content: '→';
transition: transform 0.3s;
}

.category-link:hover {
gap: 12px;
}

.cta {
padding: 120px 0;
background: var(--dark);
color: var(--white);
text-align: center;
position: relative;
}

.cta-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 56px;
font-weight: 700;
margin-bottom: 24px;
line-height: 1.1;
letter-spacing: -2px;
}

.cta-content p {
font-size: 18px;
margin-bottom: 48px;
opacity: 0.7;
max-width: 600px;
margin-left: auto;
margin-right: auto;
line-height: 1.6;
font-weight: 300;
}

.footer {
background: var(--dark);
color: var(--white);
padding: 60px 0;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}

.footer-info p {
font-size: 13px;
opacity: 0.8;
}

.footer-links {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.footer-links a {
font-size: 12px;
color: var(--white);
text-decoration: none;
opacity: 0.8;
transition: opacity 0.3s;
}

.footer-links a:hover {
opacity: 1;
}

.page-hero {
background: var(--dark);
color: var(--white);
padding: 100px 0;
text-align: center;
}

.page-hero h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 56px;
font-weight: 700;
margin-bottom: 16px;
letter-spacing: -2px;
}

.page-hero p {
font-size: 18px;
opacity: 0.7;
line-height: 1.6;
font-weight: 300;
}

.products {
padding: 120px 0;
background: var(--light);
}

.products-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1px;
background: var(--white);
border: 1px solid var(--white);
}

.product-card {
background: var(--light);
overflow: hidden;
transition: all 0.3s;
}

.product-card:hover {
background: var(--white);
}

.product-image {
width: 100%;
height: 400px;
overflow: hidden;
background: var(--white);
}

.product-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s;
filter: grayscale(20%);
}

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

.product-info {
padding: 40px;
}

.product-info h3 {
font-size: 20px;
font-weight: 600;
margin-bottom: 12px;
color: var(--dark);
letter-spacing: -0.3px;
}

.product-info p {
font-size: 14px;
color: var(--gray);
margin-bottom: 24px;
line-height: 1.6;
font-weight: 300;
}

.product-price {
font-size: 24px;
font-weight: 600;
color: var(--dark);
margin-bottom: 24px;
letter-spacing: -0.5px;
}

.btn-product {
display: inline-block;
padding: 12px 32px;
font-size: 13px;
font-weight: 500;
background: var(--dark);
color: var(--white);
text-decoration: none;
border-radius: 0;
transition: all 0.3s;
letter-spacing: 0.5px;
text-transform: uppercase;
}

.btn-product:hover {
background: var(--primary);
}

.product-features {
padding: 120px 0;
background: var(--white);
}

.product-features h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 48px;
font-weight: 700;
text-align: center;
margin-bottom: 80px;
color: var(--dark);
letter-spacing: -1.5px;
}

.features-list {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1px;
background: var(--light);
border: 1px solid var(--light);
}

.feature-item {
background: var(--white);
padding: 60px 40px;
text-align: center;
transition: all 0.3s;
}

.feature-item:hover {
background: var(--light);
}

.feature-item i {
font-size: 36px;
color: var(--primary);
margin-bottom: 24px;
}

.feature-item h3 {
font-size: 18px;
font-weight: 600;
margin-bottom: 12px;
color: var(--dark);
letter-spacing: -0.3px;
}

.feature-item p {
font-size: 14px;
color: var(--gray);
line-height: 1.6;
font-weight: 300;
}

.gift-intro {
padding: 120px 0;
background: var(--white);
}

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

.gift-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 48px;
font-weight: 700;
margin-bottom: 32px;
color: var(--dark);
line-height: 1.1;
letter-spacing: -1.5px;
}

.gift-content p {
font-size: 16px;
color: var(--gray);
margin-bottom: 24px;
line-height: 1.8;
font-weight: 300;
}

.gift-benefits {
padding: 120px 0;
background: var(--light);
}

.gift-benefits h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 48px;
font-weight: 700;
text-align: center;
margin-bottom: 80px;
color: var(--dark);
letter-spacing: -1.5px;
}

.benefits-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1px;
background: var(--white);
border: 1px solid var(--white);
}

.benefit-card {
background: var(--light);
padding: 60px 50px;
text-align: center;
transition: all 0.3s;
}

.benefit-card:hover {
background: var(--white);
}

.benefit-card i {
font-size: 36px;
color: var(--primary);
margin-bottom: 24px;
}

.benefit-card h3 {
font-size: 20px;
font-weight: 600;
margin-bottom: 12px;
color: var(--dark);
letter-spacing: -0.3px;
}

.benefit-card p {
font-size: 14px;
color: var(--gray);
line-height: 1.6;
font-weight: 300;
}

.gift-occasions {
padding: 120px 0;
background: var(--white);
}

.gift-occasions h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 48px;
font-weight: 700;
text-align: center;
margin-bottom: 80px;
color: var(--dark);
letter-spacing: -1.5px;
}

.occasions-list {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1px;
max-width: 900px;
margin: 0 auto;
background: var(--light);
border: 1px solid var(--light);
}

.occasion-item {
background: var(--white);
padding: 40px 32px;
text-align: center;
transition: all 0.3s;
}

.occasion-item:hover {
background: var(--dark);
}

.occasion-item i {
font-size: 32px;
margin-bottom: 16px;
color: var(--primary);
transition: color 0.3s;
}

.occasion-item:hover i {
color: var(--white);
}

.occasion-item p {
font-size: 14px;
font-weight: 500;
color: var(--dark);
transition: color 0.3s;
letter-spacing: 0.3px;
}

.occasion-item:hover p {
color: var(--white);
}

.contact-section {
padding: 120px 0;
background: var(--light);
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1px;
background: var(--white);
border: 1px solid var(--white);
}

.contact-info-box,
.contact-form-box {
background: var(--light);
padding: 80px 60px;
}

.contact-info-box h2,
.contact-form-box h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 700;
margin-bottom: 48px;
color: var(--dark);
letter-spacing: -1px;
}

.info-item {
display: flex;
gap: 20px;
margin-bottom: 40px;
}

.info-item i {
font-size: 24px;
color: var(--primary);
margin-top: 3px;
}

.info-item h4 {
font-size: 14px;
font-weight: 600;
margin-bottom: 6px;
color: var(--dark);
letter-spacing: 0.5px;
text-transform: uppercase;
}

.info-item p {
font-size: 15px;
color: var(--gray);
line-height: 1.6;
font-weight: 300;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
font-size: 14px;
font-weight: 600;
margin-bottom: 8px;
color: var(--dark);
}

.form-group input,
.form-group textarea {
padding: 16px;
font-size: 15px;
font-family: 'Outfit', sans-serif;
border: 1px solid var(--white);
border-radius: 0;
transition: all 0.3s;
background: var(--white);
}

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

.checkbox-group {
flex-direction: row;
align-items: flex-start;
}

.checkbox-label {
display: flex;
gap: 10px;
font-size: 13px;
color: var(--gray);
cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
margin-top: 3px;
cursor: pointer;
}

.checkbox-label a {
color: var(--primary);
text-decoration: none;
}

.checkbox-label a:hover {
text-decoration: underline;
}

.btn-submit {
padding: 16px 48px;
font-size: 14px;
font-weight: 500;
background: var(--dark);
color: var(--white);
border: none;
border-radius: 0;
cursor: pointer;
transition: all 0.3s;
letter-spacing: 0.5px;
text-transform: uppercase;
}

.btn-submit:hover {
background: var(--primary);
}

.map-section {
padding: 0;
background: var(--white);
}

.map-section h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 48px;
font-weight: 700;
text-align: center;
margin-bottom: 60px;
padding-top: 120px;
color: var(--dark);
letter-spacing: -1.5px;
}

.map-container {
border-radius: 0;
overflow: hidden;
border: none;
}

.thankyou-section,
.error-section {
padding: 140px 0;
min-height: calc(100vh - 200px);
display: flex;
align-items: center;
background: var(--white);
}

.thankyou-content,
.error-content {
text-align: center;
max-width: 600px;
margin: 0 auto;
}

.thankyou-content i {
font-size: 64px;
color: var(--primary);
margin-bottom: 32px;
}

.thankyou-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 48px;
font-weight: 700;
margin-bottom: 24px;
color: var(--dark);
line-height: 1.1;
letter-spacing: -1.5px;
}

.thankyou-content p {
font-size: 18px;
color: var(--gray);
margin-bottom: 40px;
line-height: 1.7;
font-weight: 300;
}

.thankyou-actions {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}

.error-code {
font-size: 140px;
font-weight: 700;
color: var(--primary);
line-height: 1;
margin-bottom: 24px;
letter-spacing: -4px;
}

.error-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 42px;
font-weight: 700;
margin-bottom: 20px;
color: var(--dark);
line-height: 1.1;
letter-spacing: -1.5px;
}

.error-content p {
font-size: 18px;
color: var(--gray);
margin-bottom: 40px;
line-height: 1.7;
font-weight: 300;
}

.error-actions {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}

.policy-section {
padding: 60px 0;
}

.policy-content {
max-width: 900px;
margin: 0 auto;
background: var(--white);
padding: 80px 60px;
}

.policy-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 56px;
font-weight: 700;
margin-bottom: 12px;
color: var(--dark);
line-height: 1.1;
letter-spacing: -2px;
}

.policy-date {
font-size: 14px;
color: var(--gray);
margin-bottom: 48px;
}

.policy-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 28px;
font-weight: 600;
margin-top: 48px;
margin-bottom: 20px;
color: var(--dark);
letter-spacing: -0.5px;
}

.policy-content p {
font-size: 15px;
color: var(--gray);
margin-bottom: 20px;
line-height: 1.8;
font-weight: 300;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 32px;
z-index: 9999;
box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.1);
display: none;
}

.privacy-popup.show {
display: block;
}

.privacy-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

.privacy-content h3 {
font-size: 16px;
font-weight: 600;
margin-bottom: 5px;
}

.privacy-content p {
font-size: 13px;
opacity: 0.9;
}

.privacy-actions {
display: flex;
gap: 10px;
}

.btn-accept {
padding: 12px 32px;
font-size: 13px;
font-weight: 500;
background: var(--primary);
color: var(--white);
border: none;
border-radius: 0;
cursor: pointer;
transition: all 0.3s;
letter-spacing: 0.5px;
text-transform: uppercase;
}

.btn-accept:hover {
background: var(--accent);
}

.btn-learn {
padding: 12px 32px;
font-size: 13px;
font-weight: 500;
background: transparent;
color: var(--white);
border: 1px solid var(--white);
border-radius: 0;
text-decoration: none;
transition: all 0.3s;
display: inline-block;
letter-spacing: 0.5px;
text-transform: uppercase;
}

.btn-learn:hover {
background: var(--white);
color: var(--dark);
}

@media (max-width: 1024px) {
.features-grid {
grid-template-columns: repeat(2, 1fr);
}

.features-grid .feature-card:last-child {
grid-column: 1 / -1;
}

.products-grid {
grid-template-columns: repeat(2, 1fr);
}

.features-list {
grid-template-columns: repeat(2, 1fr);
}

.features-list .feature-item:last-child {
grid-column: 1 / -1;
}

.occasions-list {
grid-template-columns: repeat(2, 1fr);
}

.about-text {
padding: 60px 50px;
}

.contact-info-box,
.contact-form-box {
padding: 60px 40px;
}
}

@media (max-width: 768px) {
.menu-toggle {
display: flex;
}

.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(10px);
flex-direction: column;
padding: 20px;
box-shadow: var(--shadow-md);
display: none;
}

.nav.active {
display: flex;
}

.hero {
padding: 80px 0 60px;
}

.hero-content h1 {
font-size: 38px;
}

.hero-content p {
font-size: 16px;
}

.features-grid,
.features-list {
grid-template-columns: 1fr;
}

.features-grid .feature-card:last-child,
.features-list .feature-item:last-child {
grid-column: auto;
}

.categories-grid,
.benefits-grid {
grid-template-columns: 1fr;
}

.products-grid {
grid-template-columns: 1fr;
}

.occasions-list {
grid-template-columns: repeat(2, 1fr);
}

.about-wrapper {
grid-template-columns: 1fr;
}

.about-text {
padding: 50px 30px;
}

.contact-wrapper {
grid-template-columns: 1fr;
}

.contact-info-box,
.contact-form-box {
padding: 50px 30px;
}

.footer-content {
flex-direction: column;
text-align: center;
}

.footer-links {
justify-content: center;
}

.privacy-content {
flex-direction: column;
text-align: center;
}

.privacy-actions {
width: 100%;
justify-content: center;
}

.policy-content {
padding: 40px 30px;
}

.policy-content h1 {
font-size: 36px;
}

.policy-content h2 {
font-size: 24px;
}

.features,
.categories,
.about,
.products,
.product-features,
.gift-intro,
.gift-benefits,
.gift-occasions,
.contact-section,
.map-section,
.cta {
padding: 60px 0;
}
}

@media (max-width: 480px) {
.hero {
padding: 60px 0 40px;
}

.hero-content h1 {
font-size: 32px;
}

.hero-content p {
font-size: 15px;
}

.features,
.categories,
.about,
.products,
.product-features,
.gift-benefits,
.gift-occasions,
.contact-section,
.map-section,
.cta {
padding: 50px 0;
}

.categories h2,
.gift-benefits h2,
.gift-occasions h2,
.map-section h2,
.about-text h2,
.product-features h2 {
font-size: 32px;
margin-bottom: 40px;
}

.occasions-list {
grid-template-columns: 1fr;
}

.feature-card,
.category-card,
.benefit-card {
padding: 40px 30px;
}

.product-info {
padding: 30px;
}

.thankyou-content h1,
.error-content h1 {
font-size: 28px;
}

.error-code {
font-size: 80px;
}

.page-hero h1 {
font-size: 36px;
}

.cta-content h2 {
font-size: 36px;
}

.btn-primary,
.btn-secondary {
padding: 14px 32px;
}
}

@media (max-width: 320px) {
body {
font-size: 14px;
}

.container {
padding: 0 15px;
}

.hero-content h1 {
font-size: 28px;
}

.btn-primary,
.btn-secondary {
padding: 12px 24px;
font-size: 14px;
}

.policy-content {
padding: 30px 20px;
}
}
