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

html {
overflow-x: hidden;
}

body {
font-family: 'Outfit', sans-serif;
color: var(--text);
line-height: 1.6;
background: var(--bg);
font-size: 14px;
overflow-x: hidden;
max-width: 100%;
word-wrap: break-word;
overflow-wrap: break-word;
}

:root {
--primary: #2c3e50;
--secondary: #e74c3c;
--accent: #f39c12;
--light: #ecf0f1;
--dark: #34495e;
--text: #2c3e50;
--bg: #ffffff;
}

h1, h2, h3, h4 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 600;
word-wrap: break-word;
overflow-wrap: break-word;
max-width: 100%;
}

h1 {
font-size: 2rem;
margin-bottom: 0.8rem;
}

h2 {
font-size: 1.6rem;
margin-bottom: 0.7rem;
}

h3 {
font-size: 1.2rem;
margin-bottom: 0.5rem;
}

p {
margin-bottom: 0.8rem;
word-wrap: break-word;
overflow-wrap: break-word;
max-width: 100%;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
width: 100%;
overflow-x: hidden;
}

header {
background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
padding: 0.8rem 0;
position: relative;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.3rem;
font-weight: 700;
color: #fff;
letter-spacing: -0.5px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 60%;
}

.main-nav {
display: flex;
gap: 1.5rem;
}

.main-nav a {
color: #fff;
text-decoration: none;
font-size: 0.9rem;
font-weight: 400;
transition: color 0.3s;
position: relative;
}

.main-nav a:hover {
color: var(--accent);
}

.main-nav a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--accent);
transition: width 0.3s;
}

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

.menu-toggle {
display: none;
background: none;
border: none;
color: #fff;
font-size: 1.3rem;
cursor: pointer;
}

.hero {
background: 
radial-gradient(ellipse at 20% 30%, rgba(52, 152, 219, 0.15) 0%, transparent 50%),
radial-gradient(ellipse at 80% 70%, rgba(142, 68, 173, 0.12) 0%, transparent 50%),
radial-gradient(circle at 40% 80%, rgba(41, 128, 185, 0.18) 0%, transparent 40%),
radial-gradient(circle at 90% 20%, rgba(44, 62, 80, 0.2) 0%, transparent 50%),
linear-gradient(135deg, #1a252f 0%, #2c3e50 25%, #34495e 50%, #2c3e50 75%, #1e3a4c 100%);
min-height: 70vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: #fff;
padding: 2rem 1rem;
}

.hero-content h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.hero-content p {
font-size: 1.1rem;
margin-bottom: 1.5rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.cta-btn {
display: inline-block;
background: var(--secondary);
color: white;
padding: 0.8rem 2rem;
text-decoration: none;
border-radius: 50px;
font-weight: 600;
font-size: 0.95rem;
transition: all 0.3s;
border: 2px solid var(--secondary);
}

.cta-btn:hover {
background: transparent;
color: var(--secondary);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
display: inline-block;
background: var(--primary);
color: #fff;
padding: 0.6rem 1.5rem;
text-decoration: none;
border-radius: 5px;
font-size: 0.85rem;
transition: all 0.3s;
}

.btn-secondary:hover {
background: var(--dark);
transform: translateY(-2px);
}

.btn-outline {
align-items: center;
justify-content: center;
display: flex;
background: transparent;
color: var(--primary);
padding: 0.6rem 1.5rem;
text-decoration: none;
border-radius: 5px;
border: 2px solid var(--primary);
font-size: 0.85rem;
transition: all 0.3s;
}

.btn-outline:hover {
background: var(--primary);
color: #fff;
}

.features {
padding: 3rem 0;
background: var(--light);
}

.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 1.5rem;
}

.feature-item {
text-align: center;
padding: 1.5rem;
background: #fff;
border-radius: 10px;
transition: transform 0.3s;
}

.feature-item:hover {
transform: translateY(-5px);
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-item i {
font-size: 2.5rem;
color: var(--secondary);
margin-bottom: 0.8rem;
}

.feature-item h3 {
font-size: 1.1rem;
margin-bottom: 0.5rem;
}

.feature-item p {
font-size: 0.85rem;
color: #666;
}

.collection {
padding: 3rem 0;
}

.collection h2 {
text-align: center;
margin-bottom: 2rem;
}

.collection-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.collection-card {
position: relative;
overflow: hidden;
border-radius: 10px;
box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.collection-card img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
}

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

.collection-info {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(transparent, rgba(0,0,0,0.8));
padding: 2rem 1.5rem 1.5rem;
color: #fff;
}

.collection-info h3 {
font-size: 1.4rem;
margin-bottom: 0.5rem;
}

.collection-info p {
font-size: 0.85rem;
margin-bottom: 1rem;
}

.about-preview {
padding: 3rem 0;
background: var(--light);
}

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

.about-text h2 {
margin-bottom: 1rem;
}

.about-text p {
margin-bottom: 1rem;
color: #555;
}

.about-image img {
width: 100%;
border-radius: 10px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.newsletter {
padding: 3rem 0;
background: linear-gradient(135deg, var(--primary), var(--dark));
color: #fff;
}

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

.newsletter-content i {
font-size: 3rem;
margin-bottom: 1rem;
color: var(--accent);
}

.newsletter-content h2 {
margin-bottom: 1rem;
}

.newsletter-content p {
margin-bottom: 1.5rem;
}

.gift-section {
padding: 3rem 0;
}

.gift-banner {
background: linear-gradient(135deg, var(--accent), #e67e22);
padding: 2.5rem;
border-radius: 15px;
display: flex;
justify-content: space-between;
align-items: center;
color: #fff;
}

.gift-text h2 {
margin-bottom: 0.8rem;
}

.gift-text p {
margin-bottom: 1.2rem;
}

.btn-gift {
display: inline-block;
background: #fff;
color: var(--accent);
padding: 0.7rem 1.8rem;
text-decoration: none;
border-radius: 50px;
font-weight: 600;
font-size: 0.9rem;
transition: all 0.3s;
}

.btn-gift:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gift-banner i {
font-size: 5rem;
opacity: 0.3;
}

footer {
background: var(--primary);
color: #fff;
padding: 2rem 0 1rem;
}

.footer-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin-bottom: 1.5rem;
}

.footer-section h4 {
margin-bottom: 0.8rem;
font-size: 1rem;
}

.footer-section p,
.footer-section a {
font-size: 0.85rem;
color: rgba(255,255,255,0.8);
text-decoration: none;
display: block;
margin-bottom: 0.4rem;
word-break: break-word;
overflow-wrap: break-word;
}

.footer-section a:hover {
color: var(--accent);
}

.footer-bottom {
text-align: center;
padding-top: 1rem;
border-top: 1px solid rgba(255,255,255,0.1);
max-width: 1200px;
margin: 0 auto;
padding-left: 1rem;
padding-right: 1rem;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(0,0,0,0.95);
color: #fff;
padding: 1.5rem;
z-index: 9999;
display: none;
}

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

.privacy-content {
max-width: 1000px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 2rem;
}

.privacy-content h3 {
margin-bottom: 0.5rem;
}

.privacy-content p {
font-size: 0.85rem;
margin-bottom: 0;
}

.privacy-buttons {
display: flex;
gap: 1rem;
align-items: center;
}

.privacy-buttons button {
background: var(--secondary);
color: #fff;
border: none;
padding: 0.6rem 1.5rem;
border-radius: 5px;
cursor: pointer;
font-size: 0.85rem;
font-weight: 600;
transition: background 0.3s;
}

.privacy-buttons button:hover {
background: #c0392b;
}

.privacy-buttons a {
color: var(--accent);
text-decoration: none;
font-size: 0.85rem;
}

.page-hero {
background: linear-gradient(135deg, var(--primary), var(--dark));
color: #fff;
padding: 3rem 1rem;
text-align: center;
}

.page-hero h1 {
margin-bottom: 0.5rem;
}

.page-hero p {
font-size: 1rem;
}

.products {
padding: 3rem 0;
}

.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}

.product-card {
background: #fff;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 3px 15px rgba(0,0,0,0.1);
transition: transform 0.3s;
}

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

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

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

.product-badge {
position: absolute;
top: 10px;
right: 10px;
background: var(--secondary);
color: #fff;
padding: 0.3rem 0.8rem;
border-radius: 20px;
font-size: 0.75rem;
font-weight: 600;
}

.product-info {
padding: 1.2rem;
}

.product-info h3 {
margin-bottom: 0.5rem;
}

.product-info p {
font-size: 0.85rem;
color: #666;
margin-bottom: 1rem;
}

.product-price {
margin-bottom: 1rem;
}

.price {
font-size: 1.3rem;
font-weight: 700;
color: var(--secondary);
}

.btn-product {
display: block;
text-align: center;
background: var(--primary);
color: #fff;
padding: 0.7rem;
text-decoration: none;
border-radius: 5px;
font-size: 0.9rem;
transition: background 0.3s;
}

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

.style-guide {
padding: 3rem 0;
background: var(--light);
}

.style-guide h2 {
text-align: center;
margin-bottom: 2rem;
}

.tips-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
}

.tip-card {
background: #fff;
padding: 1.5rem;
border-radius: 10px;
text-align: center;
}

.tip-card i {
font-size: 2.5rem;
color: var(--accent);
margin-bottom: 0.8rem;
}

.tip-card h3 {
margin-bottom: 0.5rem;
}

.tip-card p {
font-size: 0.85rem;
color: #666;
}

.size-guide {
padding: 3rem 0;
}

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

.guide-content h2 {
margin-bottom: 1rem;
}

.guide-content p {
margin-bottom: 1rem;
color: #555;
}

.cta-section {
padding: 3rem 0;
background: var(--light);
}

.cta-box {
background: linear-gradient(135deg, var(--secondary), black);
padding: 2.5rem;
border-radius: 15px;
text-align: center;
color: #fff;
}

.cta-box h2 {
margin-bottom: 0.8rem;
}

.cta-box p {
margin-bottom: 1.5rem;
}

.gift-intro {
padding: 3rem 0;
background: var(--light);
}

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

.intro-content i {
font-size: 4rem;
color: var(--accent);
margin-bottom: 1rem;
}

.intro-content h2 {
margin-bottom: 1rem;
}

.intro-content p {
color: #555;
margin-bottom: 1rem;
}

.gift-options {
padding: 3rem 0;
}

.gift-options h2 {
text-align: center;
margin-bottom: 2rem;
}

.gift-cards-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}

.gift-card {
background: #fff;
border-radius: 10px;
padding: 2rem;
text-align: center;
box-shadow: 0 3px 15px rgba(0,0,0,0.1);
transition: transform 0.3s;
}

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

.gift-card.featured {
border: 3px solid var(--accent);
transform: scale(1.05);
}

.card-design {
background: linear-gradient(135deg, var(--primary), var(--dark));
padding: 2rem;
border-radius: 10px;
margin-bottom: 1.5rem;
color: #fff;
}

.card-design i {
font-size: 2.5rem;
margin-bottom: 0.8rem;
color: var(--accent);
}

.card-value {
display: block;
font-size: 2rem;
font-weight: 700;
}

.gift-card h3 {
margin-bottom: 0.8rem;
}

.gift-card p {
font-size: 0.85rem;
color: #666;
margin-bottom: 1.5rem;
}

.gift-benefits {
padding: 3rem 0;
background: var(--light);
}

.gift-benefits h2 {
text-align: center;
margin-bottom: 2rem;
}

.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
}

.benefit-item {
background: #fff;
padding: 1.5rem;
border-radius: 10px;
text-align: center;
}

.benefit-item i {
font-size: 2.5rem;
color: var(--secondary);
margin-bottom: 0.8rem;
}

.benefit-item h3 {
margin-bottom: 0.5rem;
}

.benefit-item p {
font-size: 0.85rem;
color: #666;
}

.gift-faq {
padding: 3rem 0;
}

.gift-faq h2 {
text-align: center;
margin-bottom: 2rem;
}

.faq-content {
max-width: 800px;
margin: 0 auto 2rem;
}

.faq-item {
background: #fff;
padding: 1.5rem;
border-radius: 10px;
margin-bottom: 1rem;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
margin-bottom: 0.5rem;
color: var(--primary);
}

.faq-item p {
font-size: 0.85rem;
color: #666;
}

.gift-faq .btn-outline {
display: block;
width: fit-content;
margin: 0 auto;
}

.contact-section {
padding: 3rem 0;
}

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

.contact-info h2 {
margin-bottom: 1rem;
}

.contact-info > p {
margin-bottom: 2rem;
color: #555;
}

.info-items {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.info-item {
display: flex;
gap: 1rem;
}

.info-item i {
font-size: 1.5rem;
color: var(--secondary);
margin-top: 0.2rem;
}

.info-item h3 {
margin-bottom: 0.3rem;
font-size: 1rem;
}

.info-item p {
font-size: 0.85rem;
color: #666;
margin-bottom: 0;
}

.contact-form-wrapper {
background: var(--light);
padding: 2rem;
border-radius: 10px;
}

.contact-form h2 {
margin-bottom: 1.5rem;
}

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

.form-group label {
display: block;
margin-bottom: 0.4rem;
font-weight: 600;
font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 0.7rem;
border: 1px solid #ddd;
border-radius: 5px;
font-family: 'Outfit', sans-serif;
font-size: 0.9rem;
}

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

.checkbox-group {
display: flex;
align-items: flex-start;
gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
width: auto;
margin-top: 0.3rem;
}

.checkbox-group label {
font-weight: 400;
font-size: 0.8rem;
margin-bottom: 0;
}

.checkbox-group a {
color: var(--secondary);
}

.btn-submit {
width: 100%;
background: var(--secondary);
color: #fff;
padding: 0.8rem;
border: none;
border-radius: 5px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: background 0.3s;
}

.btn-submit:hover {
background: #c0392b;
}

.map-section {
padding: 3rem 0;
background: var(--light);
}

.map-section h2 {
text-align: center;
margin-bottom: 2rem;
}

.map-wrapper {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.contact-cta {
padding: 3rem 0;
}

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

.cta-content i {
font-size: 3rem;
color: var(--accent);
margin-bottom: 1rem;
}

.cta-content h2 {
margin-bottom: 1rem;
}

.cta-content p {
color: #555;
}

.thankyou-section,
.error-section {
min-height: calc(100vh - 200px);
display: flex;
align-items: center;
justify-content: center;
padding: 3rem 1rem;
}

.thankyou-content,
.error-content {
text-align: center;
max-width: 700px;
}

.thankyou-content i,
.error-content i {
font-size: 5rem;
color: var(--secondary);
margin-bottom: 1.5rem;
}

.error-content .error-number {
font-size: 8rem;
font-weight: 700;
color: var(--primary);
line-height: 1;
margin-bottom: 1rem;
}

.thankyou-content h1,
.error-content h1 {
margin-bottom: 1rem;
}

.thankyou-content p,
.error-content p {
color: #555;
margin-bottom: 2rem;
}

.thankyou-actions,
.error-actions {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}

.policy-page {
padding: 3rem 0;
}

.policy-page h1 {
text-align: center;
margin-bottom: 0.5rem;
}

.policy-date {
text-align: center;
color: #666;
font-size: 0.85rem;
margin-bottom: 2rem;
}

.policy-content {
max-width: 900px;
margin: 0 auto;
background: #fff;
padding: 2.5rem;
border-radius: 10px;
box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.policy-content h2 {
margin-top: 2rem;
margin-bottom: 1rem;
color: var(--primary);
}

.policy-content h3 {
margin-top: 1.5rem;
margin-bottom: 0.8rem;
color: var(--dark);
}

.policy-content p {
margin-bottom: 1rem;
color: #555;
line-height: 1.8;
word-break: break-word;
overflow-wrap: break-word;
}

.policy-content ul {
margin-bottom: 1rem;
margin-left: 2rem;
}

.policy-content li {
margin-bottom: 0.5rem;
color: #555;
line-height: 1.8;
word-break: break-word;
overflow-wrap: break-word;
}

@media (max-width: 768px) {
.main-nav {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--primary);
flex-direction: column;
padding: 1rem;
gap: 0.5rem;
}

.main-nav.active {
display: flex;
}

.menu-toggle {
display: block;
}

.hero-content h1 {
font-size: 1.8rem;
}

.hero-content p {
font-size: 0.95rem;
}

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

.gift-banner {
flex-direction: column;
text-align: center;
}

.gift-banner i {
font-size: 3rem;
}

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

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

.thankyou-content i,
.error-content i {
font-size: 3.5rem;
}

.error-content .error-number {
font-size: 5rem;
}

.policy-content {
padding: 1.5rem;
}
}

@media (max-width: 480px) {
h1 {
font-size: 1.6rem;
}

h2 {
font-size: 1.3rem;
}

.hero {
min-height: 60vh;
}

.feature-grid,
.collection-grid,
.products-grid,
.gift-cards-grid {
grid-template-columns: 1fr;
}

.thankyou-actions,
.error-actions {
flex-direction: column;
}

.thankyou-actions a,
.error-actions a {
width: 100%;
text-align: center;
}

.logo {
        font-size: 0.9rem;      
        max-width: 100%;       
        white-space: nowrap;    
        display: block;        
    }

.main-nav a {
font-size: 0.85rem;
white-space: nowrap;
}

.container {
padding: 0 0.75rem;
}

.hero-content h1 {
font-size: 1.5rem;
word-break: break-word;
}

.hero-content p {
font-size: 0.9rem;
}

.cta-btn,
.btn-secondary,
.btn-outline {
padding: 0.7rem 1.2rem;
font-size: 0.85rem;
max-width: 100%;
}

.feature-item,
.product-card,
.gift-card {
padding: 1rem;
}

.gift-banner {
padding: 1.5rem;
}

.contact-form-wrapper,
.policy-content {
padding: 1rem;
}

.privacy-content {
padding: 0.5rem;
}

.privacy-content h3 {
font-size: 1rem;
}

.privacy-content p {
font-size: 0.8rem;
}

.privacy-buttons {
flex-direction: column;
width: 100%;
}

.privacy-buttons button {
width: 100%;
}

img {
max-width: 100%;
height: auto;
}

.map-wrapper iframe {
width: 100%;
height: 300px;
}

table {
max-width: 100%;
overflow-x: auto;
display: block;
}
}
