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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 32px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #666666;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: #000000;
}

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

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

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

/* Hero Section with Slider */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: block;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    display: block;
    background: transparent;
}

/* Image backgrounds are now set inline in HTML */

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.slide-text {
    text-align: center;
    color: white;
    z-index: 3;
    position: relative;
    max-width: 800px;
    padding: 0 2rem;
}

.slide-text h2 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

.slide-text p {
    font-size: 1.5rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 2rem;
}

.slider-btn.next {
    right: 2rem;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Hero Actions */
.hero-actions {
    position: absolute;
    bottom: 5rem;
    left: 0;
    right: 0;
    z-index: 10;
    pointer-events: none;
}

.hero-actions .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    pointer-events: auto;
}

/* Products Preview Section */
.products-preview {
    padding: 5rem 0;
    background: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
    text-align: center;
}

.product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #000000;
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.product-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 1.5rem 0;
    color: #000000;
    padding: 0 1rem;
}

/* Catalog Section */
.catalog-section {
    padding: 5rem 0;
    background: #f8f8f8;
}

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

.catalog-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #000000;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

.catalog-text p {
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.catalog-features li {
    padding: 0.75rem 0;
    color: #000000;
    font-weight: 500;
    position: relative;
    padding-left: 2rem;
}

.catalog-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: 600;
    font-size: 1.2rem;
}

.catalog-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.catalog-visual {
    position: relative;
}

.catalog-preview {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.catalog-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.catalog-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #000000;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.catalog-badge span {
    display: block;
    line-height: 1.2;
}

.catalog-badge span:first-child {
    font-size: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
}

.catalog-badge span:last-child {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Blog Page Styles */
.blog-content {
    padding: 3rem 0;
    background: #ffffff;
}

.blog-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Full-width blog layout without sidebar */
.blog-layout-full {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-main-full {
    width: 100%;
}

.blog-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Featured Blog Post */
.blog-post.featured {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
}

.blog-post.featured .blog-image {
    height: 300px;
    position: relative;
}

.blog-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #000000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.blog-post.featured .blog-content-wrapper {
    padding: 2rem;
}

.blog-post.featured h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 1rem 0;
    color: #000000;
    font-family: 'Space Grotesk', sans-serif;
}

/* Regular Blog Posts Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Full-width blog grid */
.blog-main-full .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-post {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #000000;
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.blog-post:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content-wrapper {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #666666;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-category {
    background: #f8f8f8;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    color: #000000;
    font-weight: 500;
}

.blog-post h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
    line-height: 1.4;
}

.blog-post p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.75rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    text-decoration: none;
    color: #666666;
    transition: all 0.3s ease;
}

.page-btn:hover,
.page-btn.active {
    background: #000000;
    color: white;
    border-color: #000000;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 12px;
}

.sidebar-widget h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #000000;
    font-family: 'Space Grotesk', sans-serif;
}

/* Newsletter Widget */
.newsletter-widget {
    background: #000000 !important;
    color: white;
    text-align: center;
    position: sticky;
    top: 2rem;
}

.newsletter-widget h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.newsletter-widget p {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    background: white;
    color: #000000;
}

.newsletter-form input::placeholder {
    color: #666666;
}

.newsletter-form button {
    background: white;
    color: #000000;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Search Widget */
.search-form {
    display: flex;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.search-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    outline: none;
    font-size: 0.95rem;
}

.search-form button {
    background: #000000;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-form button:hover {
    background: #333333;
}

/* Category List */
.category-list {
    list-style: none;
}

.category-list li {
    border-bottom: 1px solid #e5e5e5;
    padding: 0.75rem 0;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    text-decoration: none;
    color: #666666;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #000000;
}

.category-list span {
    color: #999999;
    font-size: 0.875rem;
}

/* Recent Posts */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.recent-post img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-content h5 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.recent-date {
    font-size: 0.8rem;
    color: #999999;
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    text-decoration: none;
    color: #666666;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #000000;
    color: white;
    border-color: #000000;
}

/* Individual Blog Post Styles */
.blog-post-header {
    background: #f8f8f8;
    padding: 6rem 0 3rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #000000;
}

.breadcrumb span {
    color: #999999;
}

.blog-post-meta {
    margin-bottom: 2rem;
}

.blog-meta-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #666666;
}

.blog-meta-info .blog-date,
.blog-meta-info .reading-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-header h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #000000;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
}

.blog-excerpt {
    font-size: 1.25rem;
    color: #666666;
    line-height: 1.6;
    max-width: 800px;
}

.blog-post-content {
    padding: 4rem 0;
    background: #ffffff;
}

.blog-post-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post-main {
    background: #ffffff;
}

.featured-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
}

.blog-post-body .lead {
    font-size: 1.3rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.blog-post-body h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 3rem 0 1.5rem;
    color: #000000;
    font-family: 'Space Grotesk', sans-serif;
}

.blog-post-body h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 2rem 0 1rem;
    color: #000000;
    font-family: 'Space Grotesk', sans-serif;
}

.blog-post-body p {
    margin-bottom: 1.5rem;
}

.blog-post-body ul,
.blog-post-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-post-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.blog-post-body blockquote {
    background: #f8f8f8;
    border-left: 4px solid #000000;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.blog-post-body blockquote p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #000000;
}

.blog-post-body blockquote cite {
    color: #666666;
    font-size: 0.9rem;
    font-style: normal;
}

/* Social Share */
.social-share {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 12px;
}

.social-share h4 {
    margin-bottom: 1rem;
    color: #000000;
    font-size: 1.1rem;
}

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

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background: #0a66c2;
    color: white;
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

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

/* Author Box */
.author-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 12px;
    margin-top: 3rem;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.5rem;
    color: #000000;
    font-size: 1.2rem;
}

.author-info p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Blog Post Sidebar */
.blog-post-sidebar .sidebar-widget {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.related-post img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.related-post-content h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-post-content h5 a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-content h5 a:hover {
    color: #666666;
}

.related-date {
    font-size: 0.8rem;
    color: #999999;
}

/* Newsletter Widget */
.newsletter-widget {
    background: #000000 !important;
    color: white;
}

.newsletter-widget h4 {
    color: white;
}

.newsletter-widget p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
}

.newsletter-form button {
    background: white;
    color: #000000;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #f0f0f0;
}

/* Related Articles Section */
.related-articles {
    padding: 4rem 0;
    background: #f8f8f8;
}

.related-articles h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #000000;
    font-family: 'Space Grotesk', sans-serif;
}

.related-articles .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.related-articles .blog-post h3 a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-articles .blog-post h3 a:hover {
    color: #666666;
}

/* Blog Post Responsive Design */
@media (max-width: 768px) {
    .blog-post-header {
        padding: 4rem 0 2rem;
    }
    
    .blog-post-header h1 {
        font-size: 2rem;
    }
    
    .blog-excerpt {
        font-size: 1.1rem;
    }
    
    .blog-post-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .blog-post-body {
        font-size: 1rem;
    }
    
    .blog-post-body h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem;
    }
    
    .blog-post-body h3 {
        font-size: 1.25rem;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .blog-meta-info {
        justify-content: center;
        text-align: center;
    }
    
    .related-articles .blog-grid {
        grid-template-columns: 1fr;
    }
}

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

.blog-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #000000;
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    min-width: 50px;
}

.blog-date span {
    display: block;
    line-height: 1;
}

.blog-date span:first-child {
    font-size: 1.25rem;
    font-family: 'JetBrains Mono', monospace;
}

.blog-date span:last-child {
    font-size: 0.75rem;
    margin-top: 2px;
    opacity: 0.9;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #000000;
    line-height: 1.3;
}

.blog-content p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    gap: 1rem;
}

/* Enhanced Products Page Styles */
.products {
    padding: 5rem 0;
    background: #ffffff;
}

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

.product-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #000000;
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
    color: #000000;
}

/* Page Header */
.page-header {
    background: #000000;
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.8;
}

/* Service Features */
.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666666;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

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

/* CTA Section */
.cta-section {
    background: #000000;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: #ffffff;
}

.member-bio {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
}

/* Values Section */
.values {
    padding: 5rem 0;
    background: #ffffff;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #000000;
}

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

/* Contact Form Enhancements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.form-group select:focus {
    outline: none;
    border-color: #000000;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: #f8f8f8;
}

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

.map-embed {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-info {
    display: flex;
    flex-direction: column;
}

.location-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
}

.location-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.5rem;
    text-align: center;
}

.location-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item i {
    color: #000;
    width: 20px;
    text-align: center;
}

.detail-item span {
    color: #666;
    font-size: 0.95rem;
}

.location-features h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}

.location-features ul {
    list-style: none;
    padding: 0;
}

.location-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #666;
    font-size: 0.9rem;
}

.location-features li i {
    color: #000;
    width: 16px;
    text-align: center;
}

@media (max-width: 768px) {
    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-card {
        padding: 1.5rem;
    }
}

.map-placeholder {
    height: 300px;
    background: #e5e5e5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-content i {
    font-size: 3rem;
    color: #666666;
    margin-bottom: 1rem;
}

.map-content h3 {
    color: #000000;
    margin-bottom: 0.5rem;
}

.map-content p {
    color: #666666;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

.gradient-text {
    color: #ffffff;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #000000;
    color: white;
    border: 2px solid #000000;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

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

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #000000;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: #ffffff;
}

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

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #000000;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #000000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #000000;
}

.service-card p {
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #000000;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

.lead {
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
}

.stat-label {
    color: #666666;
    font-weight: 400;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.team-member {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e5e5e5;
}

.member-avatar {
    width: 60px;
    height: 60px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.team-member h4 {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #000000;
}

.team-member p {
    color: #666666;
}

/* Contact Section */
.contact {
    background: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #000000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #000000;
}

.contact-details p {
    color: #666666;
    line-height: 1.6;
}

.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(0.8);
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

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

/* Product Detail Page Styles */
.product-slider {
    width: 100%;
    height: 80vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: transparent;
    max-width: 100%;
    max-height: 100%;
}

/* Alternative style for images that need to fill the space completely */
.slide img.cover {
    object-fit: cover;
}

/* For product images that should maintain aspect ratio */
.slide img.product-image {
    object-fit: contain;
    background: transparent;
    padding: 0;
}

/* Alternative style for images that need to fill the space */
.slide img.fill {
    object-fit: cover;
}

/* Ensure proper aspect ratio handling */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #000;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #fff;
    transform: scale(1.2);
}

.product-info-section {
    padding: 80px 0;
    background: #fff;
}

.product-details {
    max-width: 800px;
    margin: 0 auto;
}

.product-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}

.product-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.product-category {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-code {
    color: #000;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    background: #f8f8f8;
    padding: 5px 10px;
    border-radius: 4px;
}

.description-main {
    margin-bottom: 50px;
}

.product-specs {
    display: grid;
    gap: 50px;
}

.spec-section {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
}

.spec-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-section h3 i {
    color: #666;
}

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

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #000;
}

.spec-label {
    font-weight: 600;
    color: #333;
}

.spec-value {
    color: #000;
    font-weight: 500;
    text-align: right;
}

.dimensions-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.dimension-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.dimension-box {
    position: relative;
    width: 120px;
    height: 80px;
    border: 3px solid #000;
    border-radius: 8px;
    background: rgba(0,0,0,0.05);
}

.dim-label {
    position: absolute;
    font-weight: 600;
    font-size: 0.9rem;
    color: #000;
    background: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #000;
}

.dim-width {
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.dim-depth {
    right: -25px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
}

.dim-height {
    left: -25px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
}

.dimension-details {
    display: grid;
    gap: 15px;
}

.dimension-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #000;
}

.dimension-item i {
    color: #666;
}

.dim-name {
    font-weight: 600;
    color: #333;
    flex: 1;
}

.dim-value {
    font-weight: 600;
    color: #000;
    font-family: 'JetBrains Mono', monospace;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #000;
    transition: transform 0.3s ease;
}

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

.feature-item i {
    color: #000;
    font-size: 1.5rem;
    margin-top: 5px;
    min-width: 24px;
}

.feature-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin: 0 0 5px 0;
}

.feature-content p {
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.product-description p {
    margin-bottom: 20px;
}

.product-description h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin: 30px 0 15px 0;
}

.product-description ul {
    margin: 15px 0 25px 20px;
}

.product-description li {
    margin-bottom: 8px;
    color: #555;
}

.similar-products {
    padding: 80px 0;
    background: #f8f8f8;
}

.similar-products h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}

/* About Page Styles */
.production {
    padding: 80px 0;
    background: #f8f8f8;
}

.production-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.production-step {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e5e5e5;
}

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

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 60px;
    margin-bottom: 20px;
    font-family: 'JetBrains Mono', monospace;
}

.step-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.markets {
    padding: 80px 0;
    background: #fff;
}

.markets-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.market-card {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid #000;
}

.market-icon {
    width: 60px;
    height: 60px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.market-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.market-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.market-card ul {
    list-style: none;
    padding: 0;
}

.market-card li {
    padding: 8px 0;
    color: #333;
    position: relative;
    padding-left: 20px;
}

.market-card li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-slider {
        height: 60vh;
        min-height: 450px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .product-info-section {
        padding: 40px 0;
    }
    
    .product-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .product-meta {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .spec-section {
        padding: 20px;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
    }
    
    .dimensions-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dimension-visual {
        min-height: 150px;
    }
    
    .dimension-box {
        width: 100px;
        height: 70px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .product-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .similar-products {
        padding: 40px 0;
    }
    
    .similar-products h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    .header-content {
        padding: 0.75rem 0;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }

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

    .menu-toggle {
        display: block;
    }

    .hero-content {
        text-align: center;
        padding: 2rem 0;
    }

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

    .page-header {
        padding: 6rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        width: 100%;
        max-width: 250px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-btn.prev {
        left: 1rem;
    }
    
    .slider-btn.next {
        right: 1rem;
    }
    
    .slide-text h2 {
        font-size: 2.5rem;
    }
    
    .slide-text p {
        font-size: 1.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .products-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .category-tabs {
        gap: 0.25rem;
    }
    
    .category-tab {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .catalog-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .catalog-actions {
        justify-content: center;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .page-header h1 {
        font-size: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid-full {
        grid-template-columns: 1fr;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .catalog-text h2 {
        font-size: 2rem;
    }
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}