/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

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

.nav-logo h2 {
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffdd00;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.nav-logo a:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ffdd00;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ffdd00;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffdd00;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #1a1a1a;
    color: white;
}

.btn-primary:hover {
    background-color: #000;
    color: #ffdd00;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.btn-secondary:hover {
    background-color: #000;
    color: #ffdd00;
}

.btn-outline {
    background-color: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.btn-outline:hover {
    background-color: #000;
    color: #ffdd00;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
    border: 2px dashed #ccc;
}

.hero-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.3s ease;
    background: transparent;
    mix-blend-mode: multiply;
}

.hero-img:hover {
    transform: scale(1.02);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Products Preview */
.products-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header p {
    font-size: 1.25rem;
    color: #666;
}

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

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

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

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.product-image:has(.product-preview-img) {
    background: none;
    padding: 0;
}

.image-placeholder {
    font-size: 1.25rem;
    font-weight: 600;
    color: #666;
}

.product-preview-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: block;
}

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

.product-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 1.5rem 0.5rem;
    color: #1a1a1a;
}

.product-card p {
    color: #666;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

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

/* Certifications Section */
.certifications-section {
    padding: 80px 0;
    background: rgba(248, 249, 250, 0.5);
    border-radius: 16px;
}

.certifications-header {
    text-align: center;
    margin-bottom: 3rem;
}

.certifications-header h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.certifications-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    justify-items: center;
}

.certification-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.certification-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 80px;
}

.cert-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.certification-info {
    flex: 1;
}

.certification-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.certification-info p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: #1a1a1a;
    text-align: center;
}

.products-hero,
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.about-hero-content h1,
.products-hero-content h1,
.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

/* About Page Sparkle Logo */
.about-logo {
    margin-bottom: 1.5rem;
}

.sparkle-logo {
    font-family: 'Lobster', cursive !important;
    font-size: 4rem !important;
    font-weight: 400 !important;
    color: #ffdd00 !important;
    margin-bottom: 0 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
}

.about-hero-content p {
    font-size: 1.25rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-hero-content p,
.contact-hero-content p {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.company-story {
    padding: 80px 0;
    background-color: #ffffff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.story-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

.mission-values {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.mission-section {
    text-align: center;
    margin-bottom: 4rem;
}

.mission-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.mission-section p {
    font-size: 1.25rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.team-member {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #666;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.member-role {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-member p {
    color: #666;
    line-height: 1.6;
}

/* Products Page Styles */
.product-categories {
    padding: 80px 0;
    background-color: #ffffff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.category-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    height: 200px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
}

.category-card h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.category-card p {
    color: #666;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.category-features {
    list-style: none;
    margin: 0 1.5rem 1.5rem;
    padding: 0;
}

.category-features li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.category-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.detailed-products {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.product-detail-card:hover {
    transform: translateY(-5px);
}

.product-detail-image {
    height: 250px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
}

.product-detail-content {
    padding: 2rem;
}

.product-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.product-detail-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-specs h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.product-specs ul {
    list-style: none;
    padding: 0;
}

.product-specs li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.product-specs li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.custom-solutions {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.custom-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.custom-content p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.custom-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.custom-feature h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.custom-feature p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-info {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.contact-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-card p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: #1DA851;
    text-decoration: underline;
}

.email-link {
    color: #1e88e5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #1565c0;
    text-decoration: underline;
}

.phone-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #1DA851;
    text-decoration: underline;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-content p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-sidebar {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    color: #666;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.quote-info {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.quote-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.quote-info p {
    color: #666;
    line-height: 1.6;
}

.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h3:first-child {
    font-family: 'Lobster', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    color: #ffdd00;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-email-link {
    color: #66b3ff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email-link:hover {
    color: #4da6ff !important;
    text-decoration: underline;
}

.footer-phone-link {
    color: #66d966 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone-link:hover {
    color: #4dd24d !important;
    text-decoration: underline;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
    }

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

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-placeholder {
        width: 100%;
        max-width: 300px;
        height: 200px;
    }

    .hero-img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .about-img {
        max-width: 100%;
        margin: 0 1rem;
    }

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

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

    .hero-buttons {
        justify-content: center;
    }

    .container {
        padding: 0 1rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

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

    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    /* Certifications responsive styles */
    .certifications-section {
        margin: 3rem 0 2rem;
        padding: 2rem 0;
    }

    .certifications-header h3 {
        font-size: 1.75rem;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .certification-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .certification-logo {
        width: 100px;
        height: 70px;
    }

    .certification-info h4 {
        font-size: 1.1rem;
    }

    .certification-info p {
        font-size: 0.9rem;
    }

    /* Brands responsive styles */
    .brands-section {
        padding: 60px 0;
    }

    .brands-header {
        margin-bottom: 3rem;
    }

    .brands-header h3 {
        font-size: 1.75rem;
    }

    .brands-track {
        animation: scroll 20s linear infinite;
        width: calc(150px * 16); /* Smaller width for mobile */
    }

    .brand-item {
        width: 150px;
        height: 80px;
        padding: 0 0.5rem;
    }

    .brand-logo {
        max-width: 120px;
        max-height: 60px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-150px * 8)); /* Adjust for mobile width */
        }
    }
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.brands-header {
    text-align: center;
    margin-bottom: 4rem;
}

.brands-header h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.brands-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.brands-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.brands-track {
    display: flex;
    align-items: center;
    animation: scroll 30s linear infinite;
    width: calc(200px * 16); /* 8 brands * 2 sets * 200px each */
}

.brand-item {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.brand-logo {
    max-width: 160px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.brand-item:hover .brand-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 8)); /* Move by width of 8 logos */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .about-hero-content h1,
    .products-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .sparkle-logo {
        font-size: 3rem !important;
        letter-spacing: 1px;
    }

    .story-content h2,
    .mission-section h2,
    .custom-content h2,
    .form-content h2 {
        font-size: 2rem;
    }
}

/* Product Actions */
.product-actions {
    margin-top: 1.5rem;
    text-align: center;
}

.product-actions .btn {
    margin: 0 0.5rem;
}

/* Individual Product Page Styles */
.product-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.product-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.product-hero-content p {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.product-details {
    padding: 120px 0 80px;
    background-color: #ffffff;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-image-section {
    position: sticky;
    top: 100px;
}

.product-main-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 1rem;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.product-info-section {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.product-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.product-category {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 500;
}

.product-description {
    margin-bottom: 2rem;
}

.product-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.product-specifications,
.product-uses,
.product-features {
    margin-bottom: 2rem;
}

.product-specifications h3,
.product-uses h3,
.product-features h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.product-specifications ul,
.product-uses ul,
.product-features ul {
    list-style: none;
    padding: 0;
}

.product-specifications li,
.product-uses li,
.product-features li {
    color: #666;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.product-specifications li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 600;
}

.product-uses li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 600;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 600;
}

.product-cta {
    margin-top: 2rem;
    text-align: center;
}

.product-cta .btn {
    margin: 0 0.5rem;
}

/* Related Products */
.related-products {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.related-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 1.5rem;
}

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

.related-product-image {
    height: 150px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 1rem;
}

.related-product-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.related-product-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Category Pages */
.category-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.category-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.category-hero-content p {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.category-products {
    padding: 80px 0;
    background-color: #ffffff;
}

.category-products .products-grid {
    margin-bottom: 0;
}

.category-products .product-card {
    text-align: center;
}

.category-products .product-actions {
    margin-top: 1rem;
}

/* Responsive Design for Product Pages */
@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-image-section {
        position: static;
    }

    .product-main-image {
        height: 300px;
        font-size: 1.5rem;
    }

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

    .product-header h2 {
        font-size: 2rem;
    }

    .product-hero-content h1,
    .category-hero-content h1 {
        font-size: 2.5rem;
    }

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

    .product-cta .btn {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .product-hero-content h1,
    .category-hero-content h1 {
        font-size: 2rem;
    }

    .product-header h2 {
        font-size: 1.75rem;
    }

    .product-main-image {
        height: 250px;
        font-size: 1.25rem;
    }

    .product-gallery {
        grid-template-columns: 1fr;
    }
}

/* Navbar Component Styles */
navbar-component {
    display: block;
    width: 100%;
    background-color: #000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

navbar-component nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

navbar-component .logo a {
    font-family: 'Lobster', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    color: #ffdd00;
    text-decoration: none;
}

navbar-component .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

navbar-component .nav-links a {
    color: #ffdd00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

navbar-component .nav-links a:hover {
    color: #fff;
}

navbar-component .burger {
    display: none;
    cursor: pointer;
}

navbar-component .burger div {
    width: 25px;
    height: 3px;
    background-color: #ffdd00;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    navbar-component .burger {
        display: block;
    }

    navbar-component .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        height: calc(100vh - 70px);
        background-color: #000;
        flex-direction: column;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem;
    }

    navbar-component .nav-links.nav-active {
        right: 0;
    }

    navbar-component .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    navbar-component .burger.toggle .line2 {
        opacity: 0;
    }

    navbar-component .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Products Page Specific Styles */
.products-section .product-card {
    text-align: center;
    padding: 1.5rem;
}

.products-section .product-card .btn {
    margin-top: 1rem;
    display: inline-block;
}

/* Product Tabs Styles */
.product-tabs {
    margin: 2rem 0;
}

.tab-navigation {
    display: flex;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tab-navigation::-webkit-scrollbar {
    display: none;
}

.tab-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
    color: #666666;
    white-space: nowrap;
    flex: 1;
    text-align: center;
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.7);
    color: #1a1a1a;
    transform: translateY(-1px);
}

.tab-button.active {
    background: #ffffff;
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.tab-icon {
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.tab-label {
    font-weight: 600;
}

.tab-count {
    background: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tab-button.active .tab-count {
    background: #1a1a1a;
    color: #ffffff;
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Coming Soon Styles */
.coming-soon-header {
    text-align: center;
    margin-bottom: 2rem;
}

.coming-soon-header h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.coming-soon-header p {
    color: #666;
    font-size: 1rem;
}


.tab-pane .products-grid {
    gap: 1.5rem;
}

.tab-pane .product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Search Bar Styles */
.search-container {
    max-width: 600px;
    margin: 2rem auto 0;
    position: relative;
}

.search-bar {
    position: relative;
    margin-bottom: 1rem;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: #1a1a1a;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.search-icon {
    color: #666666;
    margin-right: 0.75rem;
    transition: color 0.3s ease;
}

.search-input-wrapper:focus-within .search-icon {
    color: #1a1a1a;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    color: #1a1a1a;
    placeholder-color: #999999;
}

.search-input::placeholder {
    color: #999999;
    font-weight: 400;
}

.clear-search {
    background: none;
    border: none;
    color: #666666;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clear-search:hover {
    background: #f5f5f5;
    color: #1a1a1a;
}

/* Search Results Styles */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e5e5;
    max-height: 500px;
    overflow: hidden;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.search-results.show {
    opacity: 1;
    transform: translateY(0);
}

.search-results-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
}

.results-count {
    font-size: 0.875rem;
    color: #666666;
    font-weight: 500;
}

.search-results-list {
    max-height: 400px;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.search-result-item:hover,
.search-result-item.selected {
    background: #f8f9fa;
    border-left-color: #1a1a1a;
    transform: translateX(4px);
}

.search-result-item.selected {
    background: #e8f4fd;
    border-left-color: #0066cc;
}



.search-result-content {
    flex: 1;
}

.search-result-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.search-result-description {
    font-size: 0.8rem;
    color: #666666;
    line-height: 1.4;
}

.search-result-category {
    font-size: 0.75rem;
    color: #999999;
    background: #f1f3f5;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-left: auto;
    font-weight: 500;
}

/* No Results Styles */
.no-results {
    text-align: center;
    padding: 2rem 1.5rem;
    color: #666666;
}

.no-results-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.no-results-text {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.no-results-suggestion {
    font-size: 0.875rem;
    color: #999999;
}

/* Loading States */
.search-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #666666;
}

.search-loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #e5e5e5;
    border-top: 2px solid #1a1a1a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design for Tabs */
@media (max-width: 768px) {
    .tab-navigation {
        padding: 0.25rem;
        margin-bottom: 1.5rem;
    }
    
    .tab-button {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.25rem;
        flex: 1;
        text-align: center;
    }
    
    .tab-icon {
        font-size: 1.2rem;
    }
    
    .tab-label {
        font-size: 0.7rem;
        text-align: center;
        line-height: 1.2;
    }
    
    .tab-count {
        font-size: 0.65rem;
        padding: 0.125rem 0.375rem;
        margin-top: 0.125rem;
    }
    
    .tab-pane .products-grid {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .tab-button {
        padding: 0.625rem 0.5rem;
        flex: 1;
    }
    
    .tab-label {
        font-size: 0.65rem;
    }
    
    .coming-soon-header h3 {
        font-size: 1.5rem;
    }
    
    .tab-count {
        font-size: 0.6rem;
        padding: 0.1rem 0.3rem;
    }
}

/* Responsive Design for Search */
@media (max-width: 768px) {
    .search-container {
        margin: 1.5rem auto 0;
        padding: 0 1rem;
    }
    
    .search-input-wrapper {
        padding: 0.625rem 1.25rem;
    }
    
    .search-input {
        font-size: 0.95rem;
    }
    
    .search-results {
        border-radius: 12px;
        margin: 0 1rem;
        left: -1rem;
        right: -1rem;
    }
    
    .search-result-item {
        padding: 1rem;
    }
}

/* Product Detail Collapsible Styles */
.product-info-collapsible {
    position: relative;
}

.product-info-content {
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.product-info-content.collapsed {
    max-height: 300px; /* Approximate height to match image */
    position: relative;
}

.product-info-content.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, #ffffff);
    pointer-events: none;
}

.product-info-content.expanded {
    max-height: none;
}

.see-more-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid transparent;
}

.see-more-link:hover {
    color: #0066cc;
    border-bottom: 1px solid #0066cc;
}

.see-more-link .arrow {
    transition: transform 0.3s ease;
    font-size: 0.75rem;
    color: #666666;
}

.see-more-link.expanded .arrow {
    transform: rotate(180deg);
}

.see-more-link:hover .arrow {
    color: #0066cc;
}

/* Ensure proper spacing for collapsed state */
.product-info-section.collapsed .product-cta {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .product-info-content.collapsed {
        max-height: 250px;
    }
    
    .see-more-link {
        font-size: 0.8rem;
    }
}

/* Product Attribute Table Styles */
.product-attributes {
    margin: 3rem 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.attributes-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: #ffffff;
    padding: 1.5rem 2rem;
    margin: 0;
}

.attributes-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.attributes-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.attributes-table th,
.attributes-table td {
    padding: 1rem 2rem;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.attributes-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
    width: 30%;
    font-size: 0.875rem;
}

.attributes-table td {
    color: #333333;
    font-weight: 500;
}

.attributes-table tr:last-child th,
.attributes-table tr:last-child td {
    border-bottom: none;
}

.attributes-table tr:hover {
    background: #fafbfc;
}

/* Attribute value styling */
.attribute-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.attribute-badge {
    background: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
}

.attribute-badge.primary {
    background: #1a1a1a;
    color: #ffffff;
}

.attribute-badge.success {
    background: #d4edda;
    color: #155724;
}

.attribute-badge.info {
    background: #d1ecf1;
    color: #0c5460;
}

/* Responsive attribute table */
@media (max-width: 768px) {
    .product-attributes {
        margin: 2rem 0;
        border-radius: 8px;
    }
    
    .attributes-header {
        padding: 1.25rem 1.5rem;
    }
    
    .attributes-header h3 {
        font-size: 1.125rem;
    }
    
    .attributes-table {
        font-size: 0.8rem;
    }
    
    .attributes-table th,
    .attributes-table td {
        padding: 0.875rem 1.5rem;
    }
    
    .attributes-table th {
        width: 40%;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .attributes-header {
        padding: 1rem;
    }
    
    .attributes-table th,
    .attributes-table td {
        padding: 0.75rem 1rem;
    }
    
    .attributes-table {
        font-size: 0.75rem;
    }
    
    .attribute-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
} 