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

:root {
    --color-primary: #7C3AED;
    --color-dark: #0F172A;
    --color-slate: #475569;
    --color-light: #FFFFFF;
    --color-text: #333333;
    --color-bg: #F4F4F9;
    --color-gray-light: #E2E8F0;
    --font-poppins: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-poppins);
    color: var(--color-text);
    background-color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Sections */
.section {
    padding: 4rem 0;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-dark);
}

.section.reviews,
.section.materials,
.section.shipping {
    background-color: var(--color-bg);
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
}

p.subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-slate);
    margin: 1rem 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.primary-btn:hover {
    background-color: #6C2BD9;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.secondary-btn {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.secondary-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn.card-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    width: 100%;
    margin-top: 1rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: background-color 0.3s ease;
}

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

.header .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    text-decoration: none;
}

.header .nav a {
    color: var(--color-slate);
    text-decoration: none;
    font-weight: 600;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 90vh; 
    background-size: cover;
    background-position: center;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-top: 5rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.hero-features {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-dark);
}

.hero-features .feature-item i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

/* Catalog Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--color-light);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.product-card .card-content {
    padding: 1.5rem;
    text-align: center;
}

.product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

.product-card .tag {
    display: inline-block;
    background-color: #E2E8F0;
    color: var(--color-slate);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

/* Materials Section */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.material-item {
    text-align: center;
}

.material-item i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.material-item h3 {
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.materials-grid, .material-img { 
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.material-img {
    display: block;
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

/* Sizing Section */
.sizing {
    background-color: var(--color-light);
}

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

.sizing-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.download-btn i {
    margin-right: 0.5rem;
}

/* Shipping Section */
.shipping-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: center;
}

.shipping-item i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.shipping-item h3 {
    font-size: 1.2rem;
    color: var(--color-dark);
}

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

.review-card {
    background-color: var(--color-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.review-card .stars {
    color: #F8D639; /* A nice yellow for stars */
    margin-bottom: 0.75rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 600;
    color: var(--color-slate);
}

/* About Us Section */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.about-content img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-content p {
    font-size: 1.1rem;
    text-align: center;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-slate);
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid var(--color-gray-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(124, 61, 237, 0.2);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info i {
    color: var(--color-primary);
}

.contact-info img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.honeypot-field {
    display: none;
}

.form-status {
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-gray-light);
    padding: 3rem 0 1.5rem;
}

.footer .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.footer-brand .logo {
    color: var(--color-light);
}

.footer-nav ul,
.footer-social {
    list-style: none;
}

.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--color-light);
    margin-bottom: 1rem;
}

.footer-nav a {
    color: var(--color-gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-primary);
}

.footer-social a {
    color: var(--color-gray-light);
    font-size: 1.5rem;
    margin-right: 1.25rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #2D3748;
    margin-top: 1rem;
}

 

.privacy-hero {
    position: relative;
    height: 30vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(124, 61, 237, 0.85);
}

.privacy-hero h1 {
    color: var(--color-light);
    position: relative;
    z-index: 1;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h2 {
    font-size: 2rem;
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-content p {
    margin-bottom: 1rem;
}

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

.back-btn {
    margin-top: 2rem;
}

.back-btn i {
    margin-right: 0.5rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 700px;
}

.modal-img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    .header .nav a {
        margin: 0 0.75rem;
    }
    .hero {
        height: auto;
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
    .hero-features {
        flex-direction: column;
        bottom: 1rem;
        padding: 1rem;
        gap: 1rem;
    }
    .section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-content {
        flex-direction: column-reverse;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    p.subtitle {
        font-size: 1rem;
    }
    .btn {
        padding: 0.75rem 1.25rem;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-nav, .footer-contact, .footer-social {
        text-align: center;
    }
    .footer-social a {
        margin: 0 0.5rem;
    }
}

/* Animations */
.animated {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.review-card.animated {
    transform: translateX(-20px);
}