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

:root {
--primary: #1a1a2e;
--secondary: #16213e;
--accent: #0f3460;
--highlight: #e94560;
--text-dark: #1a1a1a;
--text-light: #666;
--bg-light: #f8f9fa;
--white: #ffffff;
--border: #e0e0e0;
}

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

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

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

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

h1, h2, h3, h4 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 600;
line-height: 1.3;
margin-bottom: 15px;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

.header-unique {
background: var(--white);
padding: 18px 0;
box-shadow: 0 2px 15px rgba(0,0,0,0.08);
position: sticky;
top: 0;
z-index: 1000;
}

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

.logo a {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.4rem;
font-weight: 700;
color: var(--primary);
}

.main-nav {
display: flex;
gap: 30px;
}

.main-nav a {
font-size: 15px;
font-weight: 500;
color: var(--text-dark);
padding: 8px 0;
position: relative;
}

.main-nav a:hover,
.main-nav a.active {
color: var(--highlight);
}

.main-nav a.active::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: var(--highlight);
}

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

.nav-toggle span {
width: 25px;
height: 3px;
background: var(--primary);
border-radius: 3px;
transition: all 0.3s ease;
}

.mega-hero {
min-height: 85vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
padding: 80px 0;
}

.hero-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
}

.hero-shape {
position: absolute;
border-radius: 50%;
opacity: 0.1;
}

.shape-1 {
width: 500px;
height: 500px;
background: var(--highlight);
top: -200px;
right: -100px;
animation: float 20s infinite ease-in-out;
}

.shape-2 {
width: 300px;
height: 300px;
background: var(--white);
bottom: -100px;
left: 10%;
animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
width: 400px;
height: 400px;
background: var(--highlight);
top: 50%;
left: -150px;
animation: float 18s infinite ease-in-out;
}

@keyframes float {
0%, 100% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-30px) rotate(5deg); }
}

.mega-hero-content {
position: relative;
z-index: 2;
max-width: 800px;
text-align: center;
margin: 0 auto;
color: var(--white);
}

.hero-badge {
display: inline-block;
padding: 8px 20px;
background: rgba(233, 69, 96, 0.2);
border: 1px solid var(--highlight);
border-radius: 30px;
color: var(--white);
font-size: 13px;
font-weight: 600;
margin-bottom: 25px;
text-transform: uppercase;
letter-spacing: 1px;
}

.mega-hero-content h1 {
font-size: 3.5rem;
margin-bottom: 25px;
color: var(--white);
line-height: 1.2;
}

.mega-hero-content p {
font-size: 1.2rem;
margin-bottom: 35px;
opacity: 0.95;
line-height: 1.8;
}

.hero-cta {
display: flex;
gap: 15px;
justify-content: center;
margin-bottom: 50px;
flex-wrap: wrap;
}

.btn-hero-primary {
padding: 15px 35px;
background: var(--highlight);
color: var(--white);
border-radius: 8px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
}

.btn-hero-primary:hover {
background: #d63851;
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(233, 69, 96, 0.4);
}

.btn-hero-secondary {
padding: 15px 35px;
background: transparent;
color: var(--white);
border: 2px solid var(--white);
border-radius: 8px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
}

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

.hero-stats {
display: flex;
gap: 40px;
justify-content: center;
flex-wrap: wrap;
}

.stat-item {
display: flex;
flex-direction: column;
align-items: center;
}

.stat-item strong {
font-size: 2rem;
font-weight: 700;
color: var(--white);
margin-bottom: 5px;
}

.stat-item span {
font-size: 14px;
opacity: 0.9;
}

.intro-section {
padding: 80px 0;
background: var(--white);
}

.intro-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.intro-label {
display: inline-block;
color: var(--highlight);
font-weight: 600;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 15px;
}

.intro-text h2 {
color: var(--primary);
margin-bottom: 25px;
}

.intro-text p {
color: var(--text-light);
margin-bottom: 20px;
line-height: 1.8;
font-size: 15px;
}

.intro-image img {
border-radius: 15px;
box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.categories-section {
padding: 80px 0;
background: var(--bg-light);
}

.section-title {
text-align: center;
margin-bottom: 50px;
}

.section-title h2 {
color: var(--primary);
margin-bottom: 10px;
}

.section-title p {
color: var(--text-light);
font-size: 16px;
}

.categories-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}

.category-card {
position: relative;
height: 350px;
border-radius: 15px;
overflow: hidden;
background: linear-gradient(135deg, var(--accent), var(--secondary));
display: flex;
align-items: flex-end;
transition: all 0.4s ease;
}

.category-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.category-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.category-content {
position: relative;
z-index: 2;
padding: 35px;
color: var(--white);
width: 100%;
}

.category-content h3 {
font-size: 1.8rem;
margin-bottom: 10px;
}

.category-content p {
font-size: 15px;
opacity: 0.9;
margin-bottom: 15px;
}

.category-arrow {
font-size: 2rem;
font-weight: 300;
transition: transform 0.3s ease;
display: inline-block;
}

.category-card:hover .category-arrow {
transform: translateX(10px);
}

.values-section {
padding: 80px 0;
background: var(--white);
}

.values-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}

.value-card {
padding: 30px 25px;
background: var(--bg-light);
border-radius: 12px;
transition: all 0.3s ease;
}

.value-card:hover {
background: var(--primary);
color: var(--white);
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.value-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--highlight);
margin-bottom: 15px;
opacity: 0.3;
}

.value-card h3 {
margin-bottom: 12px;
font-size: 1.3rem;
}

.value-card p {
font-size: 14px;
line-height: 1.7;
color: var(--text-light);
}

.value-card:hover p {
color: rgba(255,255,255,0.9);
}

.showcase-section {
padding: 80px 0;
background: var(--bg-light);
}

.showcase-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.showcase-label {
display: inline-block;
color: var(--highlight);
font-weight: 600;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 15px;
}

.showcase-content h2 {
color: var(--primary);
margin-bottom: 25px;
}

.showcase-content p {
color: var(--text-light);
margin-bottom: 30px;
line-height: 1.8;
font-size: 15px;
}

.showcase-features {
display: flex;
flex-direction: column;
gap: 20px;
margin-bottom: 30px;
}

.showcase-feature {
display: flex;
gap: 15px;
align-items: flex-start;
}

.feature-icon {
width: 35px;
height: 35px;
background: var(--highlight);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
flex-shrink: 0;
}

.showcase-feature h4 {
margin-bottom: 5px;
font-size: 1.1rem;
}

.showcase-feature p {
font-size: 14px;
margin: 0;
}

.showcase-image img {
border-radius: 15px;
box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.btn-primary {
display: inline-block;
padding: 14px 32px;
background: var(--highlight);
color: var(--white);
border-radius: 8px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
}

.btn-primary:hover {
background: #d63851;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3);
}

.testimonials-section {
padding: 80px 0;
background: var(--white);
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.testimonial-card {
background: var(--bg-light);
padding: 30px;
border-radius: 12px;
transition: all 0.3s ease;
}

.testimonial-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-rating {
color: var(--highlight);
margin-bottom: 20px;
font-size: 18px;
letter-spacing: 2px;
}

.testimonial-card p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 20px;
line-height: 1.8;
}

.testimonial-author {
display: flex;
flex-direction: column;
gap: 5px;
}

.testimonial-author strong {
color: var(--text-dark);
font-size: 15px;
}

.testimonial-author span {
color: var(--text-light);
font-size: 13px;
}

.commitment-section {
padding: 80px 0;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
text-align: center;
}

.commitment-content h2 {
color: var(--white);
margin-bottom: 25px;
}

.commitment-content > p {
max-width: 900px;
margin: 0 auto 40px;
font-size: 16px;
line-height: 1.9;
opacity: 0.95;
}

.commitment-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
max-width: 1000px;
margin: 0 auto;
}

.commitment-item {
padding: 25px;
background: rgba(255,255,255,0.1);
border-radius: 10px;
backdrop-filter: blur(10px);
}

.commitment-item h4 {
margin-bottom: 10px;
font-size: 1.2rem;
}

.commitment-item p {
font-size: 14px;
opacity: 0.9;
}

.newsletter-section {
padding: 80px 0;
background: var(--bg-light);
text-align: center;
}

.newsletter-content h2 {
color: var(--primary);
margin-bottom: 15px;
}

.newsletter-content p {
color: var(--text-light);
margin-bottom: 30px;
font-size: 16px;
}

.footer {
background: var(--primary);
color: var(--white);
padding: 40px 0 20px;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
margin-bottom: 30px;
}

.footer-col h4 {
font-size: 1.1rem;
margin-bottom: 20px;
color: var(--white);
}

.footer-col a,
.footer-col p {
display: block;
color: rgba(255,255,255,0.8);
font-size: 14px;
margin-bottom: 10px;
line-height: 1.6;
}

.footer-col a:hover {
color: var(--highlight);
padding-left: 5px;
}

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 25px;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 14px;
}

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

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

.footer-links a:hover {
color: var(--white);
}

.cookie-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(26, 26, 46, 0.98);
padding: 25px;
z-index: 10000;
display: none;
backdrop-filter: blur(10px);
}

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

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

.cookie-content p {
color: var(--white);
font-size: 14px;
flex: 1;
}

.cookie-buttons {
display: flex;
gap: 12px;
}

.btn-accept {
padding: 12px 28px;
background: var(--highlight);
color: var(--white);
border: none;
border-radius: 6px;
cursor: pointer;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
}

.btn-accept:hover {
background: #d63851;
}

.btn-learn {
padding: 12px 28px;
background: transparent;
color: var(--white);
border: 1px solid var(--white);
border-radius: 6px;
font-size: 14px;
transition: all 0.3s ease;
}

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

.page-hero-alt {
padding: 60px 0;
background: linear-gradient(135deg, var(--accent), var(--secondary));
text-align: center;
color: var(--white);
}

.hero-alt-content h1 {
color: var(--white);
margin-bottom: 12px;
}

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

.products-section {
padding: 80px 0;
background: var(--white);
}

.products-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 35px;
}

.product-card {
background: var(--white);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
transition: all 0.4s ease;
}

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

.product-image {
position: relative;
overflow: hidden;
height: 350px;
background: var(--bg-light);
}

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

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

.product-badge {
position: absolute;
top: 15px;
right: 15px;
background: var(--highlight);
color: var(--white);
padding: 6px 14px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

.product-info {
padding: 25px;
}

.product-info h3 {
font-size: 1.3rem;
margin-bottom: 12px;
color: var(--primary);
}

.product-info p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 18px;
line-height: 1.7;
}

.product-price {
margin-bottom: 18px;
}

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

.btn-product {
display: block;
text-align: center;
padding: 12px;
background: var(--primary);
color: var(--white);
border-radius: 8px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
}

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

.features-alt-section {
padding: 70px 0;
background: var(--bg-light);
}

.features-alt-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 35px;
}

.feature-alt-item {
padding: 35px 25px;
background: var(--white);
border-radius: 12px;
transition: all 0.3s ease;
}

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

.feature-number {
font-size: 3rem;
font-weight: 700;
color: var(--highlight);
margin-bottom: 15px;
opacity: 0.3;
}

.feature-alt-item h3 {
margin-bottom: 12px;
color: var(--primary);
}

.feature-alt-item p {
color: var(--text-light);
font-size: 14px;
line-height: 1.7;
}

.info-section {
padding: 80px 0;
background: var(--white);
}

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

.info-content-center h2 {
color: var(--primary);
margin-bottom: 30px;
}

.info-content-center p {
color: var(--text-light);
margin-bottom: 20px;
line-height: 1.9;
font-size: 15px;
}

.contact-section {
padding: 80px 0;
background: var(--white);
}

.contact-grid {
display: grid;
grid-template-columns: 1.3fr 1fr;
gap: 50px;
}

.contact-form-wrapper h2 {
color: var(--primary);
margin-bottom: 15px;
}

.contact-form-wrapper p {
color: var(--text-light);
margin-bottom: 30px;
}

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

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

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

.form-group input,
.form-group textarea {
padding: 14px;
border: 2px solid var(--border);
border-radius: 8px;
font-family: 'Outfit', sans-serif;
font-size: 14px;
transition: border-color 0.3s ease;
}

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

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

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

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

.checkbox-label a {
color: var(--highlight);
text-decoration: underline;
}

.btn-submit {
padding: 15px;
background: var(--highlight);
color: var(--white);
border: none;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
cursor: pointer;
transition: all 0.3s ease;
}

.btn-submit:hover {
background: #d63851;
transform: translateY(-2px);
}

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

.contact-info-card {
padding: 25px;
background: var(--bg-light);
border-radius: 12px;
}

.contact-info-card h3 {
margin-bottom: 12px;
font-size: 1.2rem;
color: var(--primary);
}

.contact-info-card p {
color: var(--text-light);
font-size: 14px;
line-height: 1.7;
}

.info-note {
display: block;
font-size: 13px;
color: var(--text-light);
margin-top: 8px;
font-style: italic;
}

.map-section {
padding: 80px 0;
background: var(--bg-light);
}

.map-section h2 {
text-align: center;
color: var(--primary);
margin-bottom: 35px;
}

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

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

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

.thankyou-icon {
width: 80px;
height: 80px;
background: var(--highlight);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
margin: 0 auto 30px;
}

.thankyou-content h1,
.error-content h1 {
color: var(--primary);
margin-bottom: 20px;
}

.thankyou-content p,
.error-content p {
color: var(--text-light);
font-size: 1.1rem;
margin-bottom: 35px;
line-height: 1.8;
}

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

.btn-secondary {
display: inline-block;
padding: 14px 32px;
background: transparent;
color: var(--primary);
border: 2px solid var(--primary);
border-radius: 8px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
}

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

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

.error-links {
margin-top: 35px;
padding-top: 35px;
border-top: 1px solid var(--border);
}

.error-links p {
font-size: 15px;
margin-bottom: 18px;
}

.error-links a {
display: inline-block;
margin: 0 12px;
color: var(--highlight);
font-weight: 600;
font-size: 15px;
}

.error-links a:hover {
text-decoration: underline;
}

.policy-section {
padding: 80px 0;
background: var(--white);
}

.policy-content {
max-width: 900px;
margin: 0 auto;
}

.policy-content h1 {
color: var(--primary);
margin-bottom: 12px;
}

.policy-date {
color: var(--text-light);
font-size: 14px;
margin-bottom: 45px;
font-style: italic;
}

.policy-block {
margin-bottom: 40px;
}

.policy-block h2 {
color: var(--primary);
margin-bottom: 18px;
font-size: 1.6rem;
}

.policy-block h3 {
color: var(--text-dark);
margin: 25px 0 12px;
font-size: 1.3rem;
}

.policy-block p {
color: var(--text-light);
margin-bottom: 18px;
line-height: 1.8;
}

.policy-block ul,
.policy-block ol {
margin-left: 30px;
margin-bottom: 18px;
}

.policy-block li {
color: var(--text-light);
margin-bottom: 12px;
line-height: 1.8;
}

@media (max-width: 992px) {
h1 { font-size: 2rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.3rem; }

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

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

.intro-grid,
.showcase-grid,
.contact-grid {
grid-template-columns: 1fr;
gap: 40px;
}

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

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

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

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

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

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

.footer-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.footer-bottom {
flex-direction: column;
gap: 18px;
text-align: center;
}
}

@media (max-width: 768px) {
.container {
padding: 0 15px;
}

.main-nav {
position: fixed;
top: 70px;
left: -100%;
width: 100%;
height: calc(100vh - 70px);
background: var(--white);
flex-direction: column;
padding: 35px;
gap: 0;
box-shadow: 0 5px 25px rgba(0,0,0,0.15);
transition: left 0.3s ease;
}

.main-nav.active {
left: 0;
}

.main-nav a {
padding: 18px 0;
border-bottom: 1px solid var(--border);
font-size: 16px;
}

.nav-toggle {
display: flex;
}

.nav-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -7px);
}

.mega-hero {
min-height: 70vh;
padding: 60px 0;
}

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

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

.hero-cta {
flex-direction: column;
}

.btn-hero-primary,
.btn-hero-secondary {
width: 100%;
text-align: center;
}

.hero-stats {
gap: 25px;
}

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

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

.category-card {
height: 300px;
}

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

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

.btn-accept,
.btn-learn {
width: 100%;
}

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

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

.thankyou-actions .btn-primary,
.thankyou-actions .btn-secondary,
.error-actions .btn-primary,
.error-actions .btn-secondary {
width: 100%;
}
}

@media (max-width: 480px) {
h1 { font-size: 1.7rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }

body {
font-size: 14px;
}

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

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

.stat-item strong {
font-size: 1.6rem;
}

.section-title h2 {
font-size: 1.6rem;
}

.category-card {
height: 250px;
}

.product-image {
height: 280px;
}

.thankyou-icon {
width: 65px;
height: 65px;
font-size: 2.5rem;
}

.error-number {
font-size: 4rem;
}

.policy-content {
padding: 0 10px;
}
}

@media (max-width: 320px) {
.container {
padding: 0 12px;
}

h1 { font-size: 1.5rem; }
h2 { font-size: 1.3rem; }

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

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

.category-card {
height: 220px;
}

.product-image {
height: 240px;
}

.value-card,
.feature-alt-item,
.product-card {
padding: 20px;
}
}

.fashion-item {
position: absolute;
font-size: 3rem;
opacity: 0.15;
animation: fashionFloat 25s infinite ease-in-out;
}

.item-1 {
top: 10%;
left: 5%;
animation-delay: 0s;
}

.item-2 {
top: 20%;
right: 8%;
animation-delay: 3s;
}

.item-3 {
top: 60%;
left: 10%;
animation-delay: 6s;
}

.item-4 {
bottom: 15%;
right: 15%;
animation-delay: 9s;
}

.item-5 {
top: 40%;
right: 5%;
animation-delay: 12s;
}

.item-6 {
bottom: 25%;
left: 8%;
animation-delay: 15s;
}

.item-7 {
top: 70%;
right: 25%;
animation-delay: 18s;
}

.item-8 {
top: 30%;
left: 20%;
animation-delay: 21s;
}

@keyframes fashionFloat {
0%, 100% { 
transform: translateY(0) rotate(0deg) scale(1);
opacity: 0.15;
}
25% { 
transform: translateY(-40px) rotate(10deg) scale(1.1);
opacity: 0.25;
}
50% { 
transform: translateY(-20px) rotate(-5deg) scale(0.95);
opacity: 0.2;
}
75% { 
transform: translateY(-50px) rotate(15deg) scale(1.05);
opacity: 0.18;
}
}
