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

body {
    font-family: 'Josefin Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 24px;
    height: 1.5px;
    background-color: #1a1a1a;
    border-radius: 0;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.hamburger-line:nth-child(1) {
    top: 12px;
}

.hamburger-line:nth-child(2) {
    top: 16px;
}

.hamburger-line:nth-child(3) {
    top: 20px;
}

.mobile-menu-btn:hover .hamburger-line {
    background-color: #333;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
    top: 16px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scale(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
    top: 16px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1001;
    transform: translateX(-100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 8rem 3rem 3rem;
    height: 100vh;
    overflow-y: auto;
    position: relative;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding-top: 6rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
}

.mobile-menu-header {
    position: absolute;
    top: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 2rem;
    z-index: 1004;
    max-width: calc(100% - 120px);
    margin: 0 auto;
}

.mobile-menu-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1005;
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.mobile-menu-section {
    margin-bottom: 2rem;
}

.mobile-menu-section h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #9ca3af;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(0,0,0,0.15);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.mobile-menu-item {
    display: block;
    padding: 0,5rem 0;
    color: #374151;
    text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    letter-spacing: -0.01em;
    transform: translateX(0);
    padding-left: 0.5rem;
}

.mobile-menu-item:hover {
    color: #000;
    padding-left: 1rem;
    font-weight: 400;
    background: rgba(249, 250, 251, 0.8);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateX(8px);
}

.mobile-login-btn {
    color: #333;
    font-weight: 400;
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: #fff;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.9rem;
    max-width: 250px;
}

.mobile-login-btn:hover {
    background: linear-gradient(135deg, #000, #1a1a1a);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 0;
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.12);
    gap: 1.5rem;
    min-height: 100px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
}

.mobile-nav-right {
    display: none;
}

.nav-left {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    padding: 0.5rem 0;
    flex-shrink: 0;
    margin-left: 1rem;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1rem;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: -0.01em;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #333, #666);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-link:hover {
    color: #000;
    background: rgba(0, 0, 0, 0.03);
    transform: translateY(-1px);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
}

.dropdown-toggle:hover {
    color: #000;
    background: rgba(0, 0, 0, 0.03);
    transform: translateY(-1px);
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.875rem 1.75rem;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: -0.01em;
}

.dropdown-item:hover {
    background: rgba(0,0,0,0.04);
    color: #000;
    padding-left: 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    font-family: 'Josefin Sans', sans-serif;
}

.logo-image {
    height: 85px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
    object-fit: contain;
}

.mobile-logo-image {
    height: 70px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
    object-fit: contain;
}

/* Search Modal */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.search-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0;
}

.search-modal-content {
    background: white;
    border-radius: 0 0 12px 12px;
    padding: 2rem;
    width: 100%;
    max-width: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: slideFromTop 0.3s ease;
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.search-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
}

.search-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

.search-modal-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Josefin Sans', sans-serif;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.search-modal-input:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.search-modal-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Josefin Sans', sans-serif;
    width: 100%;
}

.search-modal-btn:hover {
    background: #333;
    transform: translateY(-1px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideFromTop {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0.5rem 0;
    flex-shrink: 0;
    margin-right: 1rem;
}

.search-container {
    display: flex;
    align-items: center;
    background: rgba(248, 249, 250, 0.8);
    border: 1px solid rgba(233, 236, 239, 0.6);
    border-radius: 25px;
    padding: 0.875rem 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.search-container:focus-within {
    border-color: #333;
    box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

.search-input {
    border: none;
    background: none;
    outline: none;
    padding: 0;
    width: 220px;
    font-size: 0.9rem;
    color: #333;
    font-family: 'Josefin Sans', sans-serif;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: #333;
}

.search-btn-nav {
    background: white;
    border: none;
    cursor: pointer;
    color: #1a1a1a;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.search-btn-nav:hover {
    background: #f8f9fa;
    color: #000;
    transform: translateY(-1px);
}

.login-btn {
    background: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/anasayfa2.jpg') center/cover no-repeat;
    padding-top: 80px;
    position: relative;
    margin: 0;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.2;
    font-family: 'Josefin Sans', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
    font-weight: 400;
    font-family: 'Josefin Sans', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Collections Section */
.collections {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
}

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

/* Hide scrollbar for webkit browsers */
.collections-grid::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for Firefox */
.collections-grid {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.collection-item {
    text-align: center;
    cursor: pointer;
    width: 180px;
    height: 220px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.collection-image {
    width: 180px;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    background: #f8f8f8;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    position: absolute;
    top: 0;
    left: 0;
}

.collection-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
    margin-top: 1rem;
    margin-bottom: 0;
    text-align: center;
    position: static;
    width: 100%;
}

/* Products Section */
.products {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
}

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

.products-header .section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
    font-family: 'Josefin Sans', sans-serif;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #333 0%, #666 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    width: 241px;
    height: 241px;
    background: #fafafa;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    border-radius: 0;
}

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

.product-card:hover .product-name {
    text-decoration: underline;
}

.product-details {
    padding: 1rem 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-name {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 0.3px;
    line-height: 1.4;
    text-align: left;
    padding-left: 0;
    transition: text-decoration 0.3s ease;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
    font-family: 'Josefin Sans', sans-serif;
    text-align: left;
    position: relative;
    margin-top: auto;
    padding-left: 0;
}



.products-footer {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.view-all-btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Newsletter Section */
.newsletter {
    background: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
    font-size: 1rem;
}

.newsletter-btn {
    background: #333;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #555;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    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;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: #ccc;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1.2rem 1.5rem;
        position: relative;
        min-height: 110px;
        gap: 1rem;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-left, .nav-right {
        display: none;
    }

    .nav-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
    }

    .logo-image {
    height: 85px;
    transition: all 0.3s ease;
}

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

    .mobile-menu-btn {
        display: flex;
        position: relative;
        order: 1;
        width: 32px;
        height: 32px;
        background: transparent;
        border: none;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn:hover {
        transform: none;
    }

    .mobile-menu-btn.active {
        background: transparent;
    }

    .mobile-nav-right {
        display: flex;
        align-items: center;
        gap: 1rem;
        order: 3;
        position: relative;
        z-index: 1000;
    }

    .mobile-search-btn-nav {
        background: white;
        border: none;
        color: #1a1a1a;
        cursor: pointer;
        padding: 0.6rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-size: 0.8rem;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-search-btn-nav:hover {
        background: #f8f9fa;
        transform: translateY(-1px);
    }

    .mobile-login-btn-nav {
        background: white;
        border: none;
        color: #1a1a1a;
        cursor: pointer;
        padding: 0.6rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-size: 0.8rem;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-login-btn-nav:hover {
        background: #f8f9fa;
        transform: translateY(-1px);
    }

    .mobile-login-btn-nav:hover {
        background: linear-gradient(135deg, #000, #1a1a1a);
        transform: translateY(-1px) scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }

    .mobile-menu {
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        margin-top: 0.5rem;
    }
    
    .dropdown-toggle {
        justify-content: center;
        width: 100%;
    }
    
    .dropdown-item {
        text-align: center;
        padding: 0.5rem 1rem;
    }
    
    .hero {
        height: 60vh;
        padding-top: 60px;
    }

    .hero-content {
        padding: 1.5rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .collections {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .collections-grid {
        display: flex;
        overflow-x: auto;
        gap: 0.5rem;
        padding: 0.5rem 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .collection-item {
        width: 180px;
        height: 220px;
        flex: 0 0 180px;
        scroll-snap-align: start;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .collection-image {
        width: 180px;
        height: 180px;
        aspect-ratio: 1;
        position: relative;
        overflow: hidden;
    }

    .collection-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .collection-name {
        font-size: 1rem;
        position: static;
        margin-top: 1rem;
    }
    
    .products {
        padding: 3rem 1.5rem;
        background: #ffffff;
    }

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

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

    .section-subtitle {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .product-image {
        width: 241px;
        height: 241px;
    }
    
    .product-image img {
        object-fit: cover;
    }
    
    .product-card {
        border-radius: 0;
    }
    
    .product-details {
        padding: 0.75rem 0;
    }
    
    .product-name {
        font-size: 1rem;
        text-align: left;
        padding-left: 0;
    }
    
    .product-price {
        font-size: 1.1rem;
        text-align: left;
        padding-left: 0;
    }

    .view-all-btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
    
    .story-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .story-text h2 {
        font-size: 1.5rem;
    }
    
    .story-text p {
        font-size: 0.9rem;
    }
    
    .story-image img {
        height: 200px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .value-card {
        padding: 1rem;
    }
    
    .value-card h3 {
        font-size: 1rem;
    }
    
    .value-card p {
        font-size: 0.85rem;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
    
    .contact-card h3 {
        font-size: 1rem;
    }
    
    .contact-card p {
        font-size: 0.85rem;
    }
    
    .contact-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-form-container {
        padding: 1rem;
    }
    
    .contact-form-container h2 {
        font-size: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .product-content {
        grid-template-columns: 1fr;
    }
    
    .filter-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .team-grid, .process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem 1rem;
        min-height: 80px;
        gap: 0.8rem;
        box-shadow: 0 3px 25px rgba(0, 0, 0, 0.1);
        background: rgba(255, 255, 255, 0.98);
    }
    
    .nav-left {
        gap: 1rem;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .mobile-logo-image {
        height: 40px;
    }

    .mobile-menu-btn {
        width: 28px;
        height: 28px;
    }

    .mobile-menu-btn:hover {
        transform: none;
    }

    .mobile-login-btn-nav {
        width: 35px;
        height: 35px;
        padding: 0.5rem;
        font-size: 0.75rem;
    }
    
    .search-input {
        width: 150px;
    }
    
    .hero {
        height: 50vh;
        padding-top: 50px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title, .products-hero-title, .about-hero-title, .contact-hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .collections {
        padding: 1.5rem 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .collections-grid {
        display: flex;
        overflow-x: auto;
        gap: 0.5rem;
        padding: 0.5rem 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .collection-item {
        flex: 0 0 180px;
        scroll-snap-align: start;
        width: 180px;
        height: 220px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .collection-image {
        width: 180px;
        height: 180px;
        aspect-ratio: 1;
        position: relative;
        overflow: hidden;
    }

    .collection-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .collection-name {
        font-size: 0.9rem;
        text-align: center;
        position: static;
        margin-top: 1rem;
    }
    
    .products {
        padding: 2rem 1rem;
        background: #ffffff;
    }

    .products-header {
        margin-bottom: 2rem;
    }

    .products-header .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .product-image {
        width: 198px;
        height: 198px;
    }
    
    .product-image img {
        object-fit: cover;
    }
    
    .product-card {
        border-radius: 0;
    }
    
    .product-details {
        padding: 0.5rem 0;
    }
    
    .product-name {
        font-size: 0.85rem;
        text-align: left;
        padding-left: 0;
    }
    
    .product-price {
        font-size: 0.9rem;
        text-align: left;
        padding-left: 0;
    }

    .view-all-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .story-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .story-text h2 {
        font-size: 1.2rem;
    }
    
    .story-text p {
        font-size: 0.8rem;
    }
    
    .story-image img {
        height: 150px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .value-card {
        padding: 0.75rem;
    }
    
    .value-card h3 {
        font-size: 0.9rem;
    }
    
    .value-card p {
        font-size: 0.8rem;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .contact-card {
        padding: 0.75rem;
    }
    
    .contact-card h3 {
        font-size: 0.9rem;
    }
    
    .contact-card p {
        font-size: 0.8rem;
    }
    
    .contact-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .contact-form-container {
        padding: 0.75rem;
    }
    
    .contact-form-container h2 {
        font-size: 1.2rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .product-details {
        grid-template-columns: 1fr;
    }
    
    .filter-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .process-step {
        padding: 0.75rem;
    }
    
    .process-step h3 {
        font-size: 0.9rem;
    }
    
    .process-step p {
        font-size: 0.8rem;
    }
    
    .step-number {
        font-size: 1.2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact page responsive */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .map-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-form-container,
    .contact-map {
        padding: 2rem;
    }
    
    /* Product detail responsive */
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-images {
        position: static;
    }
    
    .main-image img {
        height: 300px;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .specs-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .product-specs h2,
    .related-products h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .spec-item {
        padding: 1.25rem;
    }
    
    .spec-item h4 {
        font-size: 0.95rem;
    }
    
    .related-product h3 {
        font-size: 1.1rem;
        margin: 1rem 1rem 0.5rem;
    }
    
    .related-product .price {
        font-size: 1rem;
        margin: 0 1rem 1rem;
    }
}

/* Enhanced Search Notification Styles */
.search-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2196F3;
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    z-index: 10000;
    font-size: 14px;
    font-weight: 500;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-notification.info {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.search-notification.error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
}

/* Enhanced Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Enhanced Focus States */
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #1a1a1a;
    outline-offset: 2px;
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Enhanced Selection */
::selection {
    background: rgba(26, 26, 26, 0.2);
    color: #1a1a1a;
}

/* Product Specifications Section */
.product-specs {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e9ecef;
}

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

.product-specs h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

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

.spec-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.spec-item:hover {
    border-color: #1a1a1a;
    transform: translateY(-2px);
}

.spec-item h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.spec-item p {
    font-size: 0.95rem;
    color: #666;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1.5;
    margin: 0;
    font-weight: 300;
}

/* Related Products Section */
.related-products {
    padding: 4rem 0;
    background: #ffffff;
    border-top: 1px solid #e9ecef;
}

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

.related-products h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

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

.related-product {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.related-product:hover {
    border-color: #1a1a1a;
    transform: translateY(-2px);
}

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

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

.related-product h3 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
    margin: 1rem 1rem 0.5rem;
    letter-spacing: 0.3px;
}

.related-product .price {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
    margin: 0 1rem 1rem;
    padding-bottom: 1rem;
}

/* Enhanced Print Styles */
@media print {
    .header,
    .mobile-menu,
    .newsletter,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .collections,
    .products {
        padding: 2rem 0;
    }
} 

/* Product Detail Page Styles */
.product-detail-section {
    padding-top: 0; /* Navbar ile arasındaki boşluk kaldırıldı */
    background: #ffffff;
    min-height: 100vh;
}

/* Product Detail Content */
.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Product Images */
.product-images {
    position: sticky;
    top: 120px;
    max-width: 603px;
}

.main-image {
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 603px;
    height: 603px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.thumbnail-images {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0;
}

.thumbnail-images::-webkit-scrollbar {
    display: none;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.thumbnail.active {
    border-color: #1a1a1a;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Breadcrumb Container */
.breadcrumb-container {
    padding: 2rem 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
}

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

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

.breadcrumb-separator {
    color: #666;
    font-size: 0.8rem;
}

.breadcrumb-current {
    color: #333;
    font-weight: 600;
}

/* Product Header */
.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 1px;
    margin: 0;
    flex: 1;
}

.product-badge {
    display: none;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: 'Josefin Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.new {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.badge.popular {
    background: linear-gradient(135deg, #FF9800, #F57C00);
    color: white;
}

.badge.sale {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
}

/* Enhanced Product Info */
.product-info {
    padding: 2rem;
    padding-left: 2.5rem;
    text-align: left;
    background: #ffffff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Enhanced Product Price */
.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.current-price {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
}

.original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    font-family: 'Josefin Sans', sans-serif;
}

.discount-badge {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Josefin Sans', sans-serif;
}

/* Enhanced Product Description */
.product-description {
    margin-bottom: 2rem;
    text-align: left;
}

.product-description p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
}

/* Enhanced Color Selection */
.color-selection h3,
.cable-selection h3,
.quantity-selection h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
}

.color-options,
.cable-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.color-option,
.cable-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
}

.color-option:hover,
.cable-option:hover {
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.color-option.active,
.cable-option.active {
    border-color: #1a1a1a;
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.color-dot,
.cable-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.color-option.active .color-dot,
.cable-option.active .cable-dot {
    border-color: #1a1a1a;
    transform: scale(1.1);
}

/* Enhanced Quantity Controls */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 180px;
    margin-bottom: 2rem;
}

.quantity-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #666;
}

.quantity-btn:hover {
    border-color: #1a1a1a;
    background: #f8f9fa;
    color: #1a1a1a;
}

.quantity-controls input {
    width: 80px;
    height: 45px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Josefin Sans', sans-serif;
    transition: all 0.3s ease;
}

.quantity-controls input:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

/* Enhanced Add to Cart Section */
.add-to-cart-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.add-to-cart-btn {
    flex: 1;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: 'Josefin Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #000, #1a1a1a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.wishlist-btn {
    width: 60px;
    height: 60px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #666;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Enhanced Product Features */
.product-features {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature:last-child {
    margin-bottom: 0;
}

.feature i {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
}

.feature p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    margin: 0;
}

/* Mobile Responsive for Product Detail */
@media (max-width: 768px) {
    .product-detail-section {
        padding-top: 0;
    }
    
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem 0;
        overflow: hidden;
    }
    
    .product-images {
        position: static;
        width: 100%;
        max-width: 100vw;
        order: 1;
        margin: 0;
        position: relative;
        padding: 0 1.5rem;
    }
    
    /* Carousel Container */
    .carousel-container {
        position: relative;
        width: 603px;
        height: 603px;
        overflow: hidden;
        border-radius: 0;
        margin: 0 auto;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        background: #fff;
    }
    
    /* Desktop Navigation - Visible on desktop */
    .carousel-nav {
        display: flex;
    }
    
    /* Desktop Indicators - Visible on desktop */
    .carousel-indicators {
        display: flex;
    }
    
    /* Mobile Styles */
    @media (max-width: 768px) {
        .product-images {
            padding: 0 1rem;
        }
        
        .carousel-container {
            width: 100%;
            max-width: 100%;
            height: 400px;
            margin: 0;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        .carousel-slide {
            width: 100vw;
            height: 400px;
        }
        
        .carousel-image {
            width: 100vw;
            height: 400px;
        }
        
        .carousel-track {
            width: 400vw;
        }
        
        .carousel-nav {
            display: flex;
        }
        
        .carousel-indicators {
            display: flex;
        }
    }
    
    /* Professional Swipeable Image Carousel - Mobile */
    @media (max-width: 480px) {
        .product-images {
            width: 100%;
            padding: 0 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .carousel-container {
            width: 100%;
            max-width: 400px;
            height: 400px;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            background: #fff;
            margin: 0 auto;
        }
        
        .carousel-track {
            display: flex;
            width: 1424px;
            height: 100%;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: translateX(0);
        }
        
        .carousel-slide {
            width: 356px;
            height: 100%;
            flex-shrink: 0;
            position: relative;
        }
        
        .carousel-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 0;
        }
        
        .carousel-nav {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 1.5rem;
            pointer-events: none;
            z-index: 10;
        }
        
        .carousel-nav-btn {
            width: 48px;
            height: 48px;
            border: none;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            pointer-events: auto;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        
        .carousel-nav-btn:hover {
            background: rgba(255, 255, 255, 1);
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
        }
        
        .carousel-nav-btn:active {
            transform: scale(0.95);
        }
        
        .carousel-nav-btn i {
            font-size: 1.3rem;
            color: #333;
            font-weight: 600;
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.75rem;
            z-index: 10;
            padding: 0.5rem 1rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 25px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        
        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 2px solid transparent;
        }
        
        .indicator:hover {
            background: rgba(255, 255, 255, 0.8);
            transform: scale(1.1);
        }
        
        .indicator.active {
            background: #fff;
            transform: scale(1.3);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .image-counter {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 0.75rem 1rem;
            border-radius: 25px;
            font-size: 0.875rem;
            font-weight: 600;
            z-index: 10;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }
        
        .thumbnail-images {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0.5rem;
        }
        
        .thumbnail {
            width: 65px;
            height: 65px;
            border-radius: 12px;
            object-fit: cover;
            cursor: pointer;
            border: 3px solid transparent;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .thumbnail:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        
        .thumbnail.active {
            border-color: #007bff;
            transform: scale(1.15);
            box-shadow: 0 6px 16px rgba(0, 123, 255, 0.3);
        }
    }
    
    /* Responsive Carousel - Mobile */
    @media (max-width: 480px) {
        .product-images {
            width: 100%;
            padding: 0 0.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .carousel-container {
            width: 356px;
            height: 356px;
            max-width: 356px;
            position: relative;
            overflow: hidden;
            border-radius: 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            background: #fff;
            /* Swiper.js style container */
            touch-action: pan-y pinch-zoom;
            -webkit-user-select: none;
            user-select: none;
        }
        
        .carousel-track {
            display: flex;
            width: 1424px;
            height: 100%;
            /* Swiper.js style smooth transitions */
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: translateX(0);
            will-change: transform;
            backface-visibility: hidden;
        }
        
        .carousel-slide {
            width: 356px;
            height: 100%;
            flex-shrink: 0;
            position: relative;
        }
        
        .carousel-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 0;
        }
        
        .thumbnail {
            width: 50px;
            height: 50px;
        }
    }
    
    /* Responsive Carousel - Small Mobile */
    @media (max-width: 430px) {
        .carousel-container {
            width: 356px;
            height: 356px;
            max-width: 356px;
        }
        
        .thumbnail {
            width: 45px;
            height: 45px;
        }
    }
    
    /* Responsive Carousel - Extra Small Mobile */
    @media (max-width: 380px) {
        .carousel-container {
            width: 356px;
            height: 356px;
            max-width: 356px;
        }
        
        .thumbnail {
            width: 40px;
            height: 40px;
        }
    }
    
    /* Carousel Track - Desktop only */
    @media (min-width: 769px) {
        .carousel-track {
            display: flex;
            width: 2412px;
            height: 100%;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        /* Carousel Slides */
        .carousel-slide {
            width: 603px;
            height: 603px;
            flex-shrink: 0;
        }
        
        .carousel-image {
            width: 603px;
            height: 603px;
            object-fit: cover;
            display: block;
        }
    }
    

    
    /* Carousel Navigation */
    .carousel-nav {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        padding: 0 1rem;
        pointer-events: none;
    }
    
    .carousel-nav-btn {
        width: 48px;
        height: 48px;
        border: none;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        pointer-events: auto;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .carousel-nav-btn:hover {
        background: rgba(255, 255, 255, 1);
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }
    
    .carousel-nav-btn:active {
        transform: scale(0.95);
    }
    
    .carousel-nav-btn i {
        font-size: 1.2rem;
        color: #333;
    }
    
    /* Carousel Indicators */
    .carousel-indicators {
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 0.5rem;
        z-index: 10;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
        border: none;
        background: rgba(255, 255, 255, 0.4);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .indicator.active {
        background: rgba(255, 255, 255, 1);
        transform: scale(1.3);
        border-color: rgba(255, 255, 255, 0.8);
    }
    
    .indicator:hover {
        background: rgba(255, 255, 255, 0.7);
        transform: scale(1.1);
    }
    
    /* Image Counter */
    .image-counter {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 500;
        z-index: 10;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
    
    .main-image {
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: x mandatory;
        gap: 0;
        width: 100%;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    .main-image::-webkit-scrollbar {
        display: none;
    }
    
    .main-image img {
        width: 100vw;
        height: 400px;
        object-fit: cover;
        scroll-snap-align: start;
        flex-shrink: 0;
        min-width: 100vw;
        transition: transform 0.3s ease;
    }
    
    .main-image img:hover {
        transform: scale(1.02);
    }
    
    .thumbnail-images {
        justify-content: center;
        margin-top: 1.5rem;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0.5rem 0;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 0.75rem;
        display: flex;
        flex-wrap: wrap;
    }
    
    .thumbnail-images::-webkit-scrollbar {
        display: none;
    }
    
    .thumbnail {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
        border-radius: 12px;
        transition: all 0.3s ease;
        cursor: pointer;
        object-fit: cover;
        border: 2px solid transparent;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .thumbnail:hover {
        transform: scale(1.08);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        border-color: rgba(0, 0, 0, 0.1);
    }
    
    .thumbnail.active {
        border: 2px solid #333;
        transform: scale(1.08);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }
    
    .breadcrumb-container {
        padding: 1rem 1.5rem;
    }
    
    .product-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-badge {
        justify-content: flex-start;
    }
    
    .product-info {
        padding: 1.5rem;
        padding-left: 1.5rem;
        order: 2;
        background: #fff;
        border-radius: 12px 12px 0 0;
        margin-top: -1rem;
        position: relative;
        z-index: 5;
    }
    
    .current-price {
        font-size: 1.75rem;
    }
    
    .original-price {
        font-size: 1.1rem;
    }
    
    .color-options,
    .cable-options {
        gap: 0.5rem;
    }
    
    .color-option,
    .cable-option {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .quantity-controls {
        max-width: 150px;
    }
    
    .quantity-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .quantity-controls input {
        width: 70px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .add-to-cart-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .wishlist-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .product-features {
        padding: 1.5rem;
    }
    
    .feature {
        padding: 0.75rem;
    }
    
    .feature i {
        font-size: 1.25rem;
    }
    
    .feature h4 {
        font-size: 0.9rem;
    }
    
    .feature p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .product-detail-section {
        padding-top: 0;
    }
    
    .product-detail-content {
        gap: 1.5rem;
        padding: 0;
    }
    
    .product-images {
        max-width: 100%;
    }
    
    .main-image {
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: x mandatory;
        gap: 0;
        width: 100%;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    .main-image::-webkit-scrollbar {
        display: none;
    }
    
    .main-image img {
        width: 100vw;
        height: 396px;
        object-fit: cover;
        scroll-snap-align: start;
        flex-shrink: 0;
        min-width: 100vw;
        transition: transform 0.3s ease;
    }
    
    .main-image img:hover {
        transform: scale(1.02);
    }
    
    .thumbnail-images {
        gap: 0.5rem;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0.5rem 0;
    }
    
    .thumbnail-images::-webkit-scrollbar {
        display: none;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }
    
    .breadcrumb-container {
        display: none;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
        gap: 0.25rem;
    }
    
    .product-title {
        font-size: 1.75rem;
    }
    
    .product-info {
        padding: 1rem;
        padding-left: 1rem;
    }
    
    .current-price {
        font-size: 1.5rem;
    }
    
    .original-price {
        font-size: 1rem;
    }
    
    .discount-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    .color-option,
    .cable-option {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .color-dot,
    .cable-dot {
        width: 16px;
        height: 16px;
    }
    
    .quantity-controls {
        max-width: 130px;
    }
    
    .quantity-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .quantity-controls input {
        width: 60px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .add-to-cart-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .wishlist-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .product-features {
        padding: 1rem;
    }
    
    .feature {
        padding: 0.5rem;
    }
    
    .feature i {
        font-size: 1.1rem;
    }
    
    .feature h4 {
        font-size: 0.85rem;
    }
    
    .feature p {
        font-size: 0.75rem;
    }
}

/* Abajur Image Hover Effect */
.abajur-image {
    transition: all 0.3s ease;
}

.abajur-image:hover {
    content: url('images/abajur1.jpg');
    transform: scale(1.02);
}

.main-image .abajur-image:hover,
.thumbnail.abajur-image:hover {
    content: url('images/abajur1.jpg');
}

/* Modal Styles */
.login-modal, .register-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.login-content, .register-content {
    background: #ffffff;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-login, .close-register {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.2rem;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-login:hover, .close-register:hover {
    color: #1a1a1a;
}

/* Login Body */
.login-body, .register-body {
    padding: 2.5rem 2rem 2rem;
}

.login-body h2, .register-body h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
    text-align: center;
}

.login-form, .register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-form .form-group, .register-form .form-group {
    display: flex;
    flex-direction: column;
}

.login-form input, .register-form input {
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Josefin Sans', sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

.login-form input:focus, .register-form input:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 2px rgba(26, 26, 26, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
}

.forgot-password {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Josefin Sans', sans-serif;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #666;
}

.login-submit-btn, .register-submit-btn {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Josefin Sans', sans-serif;
    width: 100%;
    margin-top: 1rem;
}


.login-submit-btn:hover, .register-submit-btn:hover {
    background: #333;
}

.login-footer, .register-footer {
    text-align: center;
    margin-top: 2rem;
}

.login-footer p, .register-footer p {
    font-size: 0.9rem;
    color: #666;
    font-family: 'Josefin Sans', sans-serif;
}

.login-footer a, .register-footer a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-footer a:hover, .register-footer a:hover {
    color: #333;
} 

/* About and Contact Hero Sections */
.about-hero, .contact-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/anasayfa2.jpg') center/cover no-repeat;
    padding-top: 100px;
    position: relative;
    margin: 0;
}

.about-hero-content, .contact-hero-content {
    max-width: 800px;
    padding: 2rem;
    color: white;
}

.about-hero-title, .contact-hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
    font-family: 'Josefin Sans', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.about-hero-subtitle, .contact-hero-subtitle {
    font-size: 1.3rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
    font-weight: 300;
    font-family: 'Josefin Sans', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Main Section */
.about-main-section {
    padding: 6rem 0;
    background: #ffffff;
}

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

.about-text {
    padding-right: 2rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 1px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
}

.about-description strong {
    color: #1a1a1a;
    font-weight: 500;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

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

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.value-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #000, #1a1a1a);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    font-family: 'Josefin Sans', sans-serif;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
}

/* Contact Main Section */
.contact-main-section {
    padding: 6rem 0;
    background: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info {
    padding-right: 2rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 1px;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 3rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
}

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

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
}

.contact-detail-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-container h3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
    text-align: center;
}

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

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Josefin Sans', sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

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

.submit-btn {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Josefin Sans', sans-serif;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #000, #1a1a1a);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Map Section */
.map-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.map-info h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
}

.map-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
}

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

.transport-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.transport-item i {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-top: 0.25rem;
}

.transport-item h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
}

.transport-item p {
    font-size: 0.9rem;
    color: #666;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    margin: 0;
}

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

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: white;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
    margin: 0;
}

.faq-question i {
    font-size: 1rem;
    color: #666;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    margin: 0;
} 

/* Mobile Responsive for About and Contact Pages */
@media (max-width: 768px) {
    .about-hero, .contact-hero {
        height: 50vh;
        padding-top: 80px;
    }
    
    .about-hero-title, .contact-hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .about-hero-subtitle, .contact-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-content, .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .about-text {
        padding-right: 0;
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .about-title, .contact-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-description, .contact-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .contact-info {
        padding-right: 0;
        order: 2;
    }
    
    .contact-form-container {
        order: 1;
        padding: 2rem;
    }
    
    .contact-form-container h3 {
        font-size: 1.5rem;
    }
    
    .contact-details {
        gap: 1.5rem;
    }
    
    .contact-detail-item {
        padding: 1rem;
    }
    
    .map-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .map-info h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .map-info p {
        font-size: 1rem;
        text-align: center;
    }
    
    .transport-info {
        gap: 1rem;
    }
    
    .faq-grid {
        padding: 0 1.5rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero, .contact-hero {
        height: 40vh;
        padding-top: 60px;
    }
    
    .about-hero-title, .contact-hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .about-hero-subtitle, .contact-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .about-content, .contact-content {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .about-image img {
        height: 250px;
    }
    
    .about-title, .contact-title {
        font-size: 1.75rem;
    }
    
    .about-description, .contact-description {
        font-size: 0.9rem;
    }
    
    .values-grid {
        padding: 0 1rem;
    }
    
    .value-card {
        padding: 1.5rem 1rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .value-card h3 {
        font-size: 1.25rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
    }
    
    .process-grid {
        padding: 0 1rem;
    }
    
    .process-step {
        padding: 1.5rem 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .process-step h3 {
        font-size: 1.1rem;
    }
    
    .process-step p {
        font-size: 0.9rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-form-container h3 {
        font-size: 1.25rem;
    }
    
    .contact-detail-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-detail-content h4 {
        font-size: 1rem;
    }
    
    .contact-detail-content p {
        font-size: 0.9rem;
    }
    
    .map-content {
        padding: 0 1rem;
    }
    
    .map-info h3 {
        font-size: 1.25rem;
    }
    
    .map-info p {
        font-size: 0.9rem;
    }
    
    .transport-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .transport-item i {
        font-size: 1.25rem;
    }
    
    .transport-item h4 {
        font-size: 0.9rem;
    }
    
    .transport-item p {
        font-size: 0.8rem;
    }
    
    .faq-grid {
        padding: 0 1rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .product-specs h2,
    .related-products h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .spec-item {
        padding: 0.75rem;
    }
    
    .spec-item h4 {
        font-size: 0.9rem;
    }
    
    .spec-item p {
        font-size: 0.8rem;
    }
    
    .related-product img {
        height: 200px;
    }
    
    .related-product h3 {
        font-size: 1rem;
        margin: 0.75rem 0.75rem 0.25rem;
    }
    
    .related-product .price {
        font-size: 0.9rem;
        margin: 0 0.75rem 0.75rem;
    }
}

/* Products Hero Section */
.products-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/anasayfa2.jpg') center/cover no-repeat;
    padding-top: 100px;
    position: relative;
    margin: 0;
}

.products-hero-content {
    max-width: 800px;
    padding: 2rem;
    color: white;
}

.products-hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
    font-family: 'Josefin Sans', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.products-hero-subtitle {
    font-size: 1.3rem;
    color: #f0f0f0;
    margin-bottom: 3rem;
    font-weight: 300;
    font-family: 'Josefin Sans', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #f0f0f0;
    font-family: 'Josefin Sans', sans-serif;
}

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

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

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #ccc;
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 500;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Josefin Sans', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #f0f0f0;
    font-weight: 300;
    font-family: 'Josefin Sans', sans-serif;
}

/* Filter Section */
.filter-section {
    padding: 4rem 0;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

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

.filter-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
}

.filter-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
    font-family: 'Josefin Sans', sans-serif;
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 200px;
}

.filter-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-label i {
    font-size: 0.8rem;
    color: #666;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Josefin Sans', sans-serif;
    background: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

/* Products Section */
.products-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.products-info {
    flex: 1;
}

.products-info .section-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-family: 'Josefin Sans', sans-serif;
}

.products-info .section-subtitle {
    font-size: 1rem;
    color: #666;
    font-weight: 300;
    font-family: 'Josefin Sans', sans-serif;
}

.products-actions {
    display: flex;
    gap: 0.5rem;
}

.view-mode-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #666;
}

.view-mode-btn:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.view-mode-btn.active {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.products-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.products-summary {
    font-size: 0.9rem;
    color: #666;
    font-family: 'Josefin Sans', sans-serif;
}

.load-more-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Josefin Sans', sans-serif;
}

.load-more-btn:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsive for Products Page */
@media (max-width: 768px) {
    .products-hero {
        height: 50vh;
        padding-top: 80px;
    }
    
    .products-hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .products-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .filter-controls {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .filter-group {
        min-width: auto;
    }
    
    .products-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .products-actions {
        justify-content: center;
    }
    
    .products-section {
        padding: 2rem 1rem;
    }
    
    .products-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .products-hero {
        height: 40vh;
        padding-top: 60px;
    }
    
    .products-hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .products-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .filter-title {
        font-size: 1.5rem;
    }
    
    .filter-subtitle {
        font-size: 1rem;
    }
    
    .products-info .section-title {
        font-size: 1.5rem;
    }
    
    .products-section {
        padding: 1.5rem 0.75rem;
    }
    
    .products-info .section-subtitle {
        font-size: 0.9rem;
    }
}

/* --- DESKTOP CAROUSEL DÜZELTME --- */
@media (min-width: 769px) {
  .carousel-container {
    width: 603px;
    height: 603px;
    min-width: 603px;
    max-width: 603px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 0;
  }
  .carousel-track {
    display: flex;
    flex-direction: row;
    width: 2412px;
    height: 603px;
    transition: transform 0.3s ease;
  }
  .carousel-slide {
    width: 603px;
    height: 603px;
    flex-shrink: 0;
  }
  .carousel-image {
    width: 603px;
    height: 603px;
    object-fit: cover;
    display: block;
    border-radius: 0;
  }
  .product-images {
    width: 603px;
    max-width: 603px;
    min-width: 603px;
  }
  .product-detail-content {
    display: grid;
    grid-template-columns: 603px 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 2rem 0 0 0;
  }
}
/* --- /DESKTOP CAROUSEL DÜZELTME --- */