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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #221e1f;
    background-color: #ffffff;
}

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

/* Header Top Bar */
.header-top {
    background-color: #f8f8f8;
    padding: 8px 0;
    font-size: 12px;
    color: #666;
}

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

.top-left, .top-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-link {
    color: #666;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.top-link:hover {
    color: #f5841f;
}

.cart-icon {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-count {
    font-size: 12px;
    color: #666;
}

/* Main Header */
.main-header {
    background-color: #ffffff;
    padding: 20px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-section a {
    display: inline-block;
    transition: transform 0.3s ease;
}

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

.logo-image {
    max-height: 150px;
    width: auto;
    object-fit: contain;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f5841f;
    padding: 15px 30px;
    border-radius: 5px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 10px 15px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-link.active {
    background-color: #a55716;
}

.nav-link:hover {
    background-color: #a55716;
}

.search-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-input {
    padding: 10px 15px;
    border: none;
    border-radius: 25px;
    width: 250px;
    font-size: 14px;
    outline: none;
}

.search-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background-color: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

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

.hero-text p {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

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

.category-item h2 {
    font-size: 24px;
    font-weight: 700;
    color: #221e1f;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.category-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-image {
    height: 400px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}


.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


.women-image {
    position: relative;
}

.men-image {
    position: relative;
}

.bags-image {
    position: relative;
}

/* Donna Milan Section */
.donna-milan-section {
    margin: 50px 0;
    text-align: center;
}

.donna-milan-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}


/* Hero Banner */
.hero-banner {
    height: 400px;
    background: linear-gradient(135deg, #221e1f, #a55716);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    background-color: rgba(34, 30, 31, 0.9);
    padding: 30px;
    border-radius: 10px;
}

.banner-logo {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Footer */
.footer {
    background-color: #f8f8f8;
    padding: 50px 0 20px;
    margin-top: 50px;
}

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

.footer-section h3 {
    font-size: 16px;
    font-weight: 700;
    color: #221e1f;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f5841f;
}

.footer-section p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.newsletter-section {
    border-top: 1px solid #ddd;
    padding-top: 30px;
    margin-bottom: 30px;
}

.newsletter-section h3 {
    font-size: 16px;
    font-weight: 700;
    color: #221e1f;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: #f5841f;
}

.newsletter-btn {
    background-color: #f5841f;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #a55716;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

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

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f5841f;
}

.copyright {
    color: #666;
    font-size: 14px;
}

/* About Page Styles */
.about-page {
    padding: 60px 0;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-title {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.about-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #221e1f;
    margin-bottom: 30px;
    letter-spacing: 1px;
}


.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.about-image {
    position: relative;
}

.image-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #221e1f, #a55716);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leather" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="%23a55716"/><circle cx="10" cy="10" r="2" fill="%23f5841f" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23leather)"/></svg>') repeat;
    opacity: 0.1;
}

.image-overlay {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.image-overlay h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.image-overlay p {
    font-size: 18px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.about-text {
    padding-left: 20px;
}

.text-section {
    margin-bottom: 40px;
}

.text-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.company-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.info-item {
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    border-left: 4px solid #f5841f;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(245, 132, 31, 0.15);
}

.info-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #221e1f;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.info-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Contact Page Styles */
.contact-page {
    padding: 60px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-btn.tweet {
    background-color: #1da1f2;
    color: white;
}

.social-btn.pin {
    background-color: #bd081c;
    color: white;
}

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

.social-btn.like {
    background-color: #f5841f;
    color: white;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-section {
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #221e1f;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f5841f;
}

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

.submit-btn {
    background-color: #f5841f;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #a55716;
}

.address-section {
    padding: 30px;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.address-title {
    font-size: 24px;
    font-weight: 700;
    color: #221e1f;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.address-info {
    margin-bottom: 30px;
}

.address-text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.email-text {
    font-size: 16px;
    color: #f5841f;
    font-weight: 600;
}

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

.map-container iframe {
    border-radius: 10px;
}

/* Product Safety Page Styles */
.product-safety-page {
    padding: 60px 0;
}

.product-safety-header {
    text-align: center;
    margin-bottom: 50px;
}

.product-safety-title {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.product-safety-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text {
    margin-bottom: 50px;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #221e1f;
    margin-bottom: 30px;
    letter-spacing: 1px;
    border-bottom: 2px solid #f5841f;
    padding-bottom: 10px;
}

.leather-diagram-section {
    margin-bottom: 50px;
}

.leather-diagram {
    text-align: center;
    margin-bottom: 30px;
}

.leather-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.conversion-section {
    margin-bottom: 50px;
}

.conversion-table {
    overflow-x: auto;
    margin-bottom: 30px;
}

.conversion-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.conversion-table th,
.conversion-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.conversion-table th {
    background-color: #f5841f;
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.conversion-table td {
    font-size: 14px;
    color: #333;
}

.thickness-bar {
    height: 8px;
    background-color: #f5841f;
    border-radius: 4px;
    margin-top: 5px;
}

.terminology-section {
    margin-bottom: 50px;
}

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

.term-item {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #f5841f;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.term-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 132, 31, 0.15);
}

.term-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #221e1f;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.term-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.yardage-conversion {
    margin-bottom: 30px;
}

.yardage-conversion p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

/* Product Safety Page Responsive */
@media (max-width: 768px) {
    .product-safety-content {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .terminology-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .conversion-table {
        font-size: 12px;
    }
    
    .conversion-table th,
    .conversion-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 18px;
    }
    
    .intro-text p,
    .yardage-conversion p {
        font-size: 14px;
    }
    
    .term-item {
        padding: 15px;
    }
    
    .term-item h4 {
        font-size: 14px;
    }
    
    .term-item p {
        font-size: 12px;
    }
}

/* Product List Page Styles */
.product-list-page {
    padding: 0px 0;
}

.breadcrumbs {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

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

.breadcrumbs a:hover {
    color: #f5841f;
}

.breadcrumbs span {
    color: #999;
}

.page-header {
    margin-bottom: 30px;
}

.page-title {
    font-size: 36px;
    font-weight: 800;
    color: #221e1f;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.filter-sort-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
    gap: 15px;
}

.results-info {
    font-size: 14px;
    color: #666;
}

.view-options {
    display: flex;
    gap: 5px;
}

.view-btn {
    padding: 8px 12px;
    background: transparent;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.view-btn.active {
    background: #f5841f;
    color: white;
    border-color: #f5841f;
}

.view-btn:hover:not(.active) {
    background: #f5f5f5;
}

.sort-view-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-options {
    display: flex;
    align-items: center;
}

.sort-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: white;
    min-width: 150px;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease;
}

.sort-select:focus {
    border-color: #f5841f;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.filter-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background-color: white;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    border-color: #f5841f;
}

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

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.product-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #f5841f;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    color: #221e1f;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    min-height: 54px;
    display: flex;
    align-items: flex-start;
    line-height: 1.3;
}

.product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: #f5841f;
    margin-bottom: 15px;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    margin-right: 10px;
}

.new-price {
    color: #f5841f;
}

.product-rating {
    font-size: 12px;
    color: #ffc107;
    margin-bottom: 10px;
}

.detail-btn {
    width: 100%;
    background-color: #f5841f;
    color: white;
    border: 2px solid #f5841f;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
    display: block;
    visibility: visible;
    opacity: 1;
    height: auto;
    min-height: 50px;
    line-height: 1.2;
}

.detail-btn:hover {
    background-color: #a55716;
    border-color: #a55716;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.load-more-section {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    background-color: transparent;
    color: #f5841f;
    border: 2px solid #f5841f;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.load-more-btn:hover {
    background-color: #f5841f;
    color: white;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn {
    padding: 8px 12px;
    background: transparent;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.page-btn.active {
    background: #f5841f;
    color: white;
    border-color: #f5841f;
}

.page-btn:hover:not(.active) {
    background: #f5f5f5;
}

.page-btn.next {
    font-weight: bold;
}

/* List View Styles */
.products-grid.list-view .product-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    min-height: auto;
}

.products-grid.list-view .product-image {
    width: 150px;
    height: 120px;
    flex-shrink: 0;
    margin-right: 20px;
}

.products-grid.list-view .product-info {
    flex: 1;
    padding: 25px 20px 20px 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f8f8;
    border-radius: 8px;
    margin: 10px;
}

.products-grid.list-view .product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.products-grid.list-view .product-name {
    font-size: 16px;
    margin-bottom: 5px;
    min-height: 20px;
    display: flex;
    align-items: center;
}

.products-grid.list-view .product-price {
    font-size: 18px;
    margin-bottom: 0;
    min-height: 25px;
    display: flex;
    align-items: center;
}

.products-grid.list-view .product-rating {
    margin-bottom: 10px;
}

.products-grid.list-view .detail-btn {
    width: 80px;
    height: 40px;
    padding: 0;
    font-size: 12px;
    min-height: 40px;
    margin-top: auto;
    margin-left: auto;
    border-radius: 8px;
    display: flex;
    align-items: center;
    background-color: #f5841f;
    color: white;
    border: none;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.products-grid.list-view .detail-btn:hover {
    background-color: #e6730a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(245, 132, 31, 0.3);
}

/* Product List Page Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }
    
    .filter-sort-section {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .view-options {
        justify-content: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-icon {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 24px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name {
        font-size: 16px;
    }
    
    .product-description {
        font-size: 12px;
    }
    
    .product-price {
        font-size: 18px;
    }
    
    .filter-sort-section {
        flex-direction: column;
        gap: 10px;
    }
    
    .view-options {
        justify-content: center;
    }
    
    .products-grid.list-view .product-card {
        flex-direction: column;
        text-align: center;
    }
    
    .products-grid.list-view .product-image {
        width: 100%;
        height: 150px;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .products-grid.list-view .product-info {
        padding: 15px;
    }
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-section,
    .address-section {
        padding: 20px;
    }
    
    .form-title,
    .address-title {
        font-size: 20px;
    }
    
    .social-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .social-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .contact-form-section,
    .address-section {
        padding: 15px;
    }
    
    .form-title,
    .address-title {
        font-size: 18px;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* About Page Responsive */

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text {
        padding-left: 0;
    }
    
    .about-main-title {
        font-size: 36px;
    }
    
    .image-placeholder {
        height: 300px;
    }
    
    .image-overlay h3 {
        font-size: 24px;
    }
    
    .image-overlay p {
        font-size: 16px;
    }
    
    .company-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
}

@media (max-width: 480px) {
    .about-main-title {
        font-size: 28px;
    }
    
    .about-title {
        font-size: 16px;
    }
    
    .image-placeholder {
        height: 250px;
    }
    
    .image-overlay h3 {
        font-size: 20px;
    }
    
    .image-overlay p {
        font-size: 14px;
    }
}

/* Responsive Design */
/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-top .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo {
        font-size: 28px;
    }
    
    .main-nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 2;
    }
    
    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #f5841f;
        flex-direction: column;
        gap: 0;
        text-align: center;
        padding: 20px 0;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .search-section {
        order: 3;
        margin-left: auto;
    }
    
    .search-input {
        width: 200px;
        font-size: 12px;
    }
    
    .search-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-image {
        height: 300px;
    }
    
    .donna-milan-section {
        margin: 30px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .banner-logo {
        font-size: 32px;
    }
    
    .banner-overlay {
        right: 20px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 24px;
    }
    
    .search-input {
        width: 200px;
    }
    
    .banner-logo {
        font-size: 24px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

/* Search Results Styles */
.search-section {
    position: relative;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 400px;
    display: none;
    overflow-y: auto;
    margin-top: 5px;
    backdrop-filter: blur(10px);
}

.search-results.show {
    display: block;
}

.search-results-list {
    padding: 10px 0;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.search-result-item:hover {
    background-color: #f8f8f8;
}

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

.search-result-image {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 4px;
    overflow: hidden;
}

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

.search-result-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #221e1f;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.search-result-price {
    font-size: 16px;
    font-weight: 700;
    color: #f5841f;
    margin: 0 0 3px 0;
}

.search-result-category {
    font-size: 12px;
    color: #666;
    margin: 0;
    text-transform: uppercase;
}

.search-more {
    padding: 10px 15px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    background-color: #f8f8f8;
}

.search-more a {
    color: #f5841f;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.search-more a:hover {
    text-decoration: underline;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #666;
    font-style: italic;
}

/* Basit arama sonuçları için yeni stiller */
.search-result-item {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 2px 5px;
}

.search-result-item:hover {
    background-color: #f8f8f8;
    transform: translateX(2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.search-result-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

/* Gallery Styles */
.gallery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

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

.gallery-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.gallery-close:hover {
    color: #f5841f;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.gallery-prev {
    left: -80px;
}

.gallery-next {
    right: -80px;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(245, 132, 31, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.gallery-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding: 10px;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
}

.gallery-thumb:hover {
    border-color: #f5841f;
    transform: scale(1.1);
}

.gallery-thumb.active {
    border-color: #f5841f;
    box-shadow: 0 0 10px rgba(245, 132, 31, 0.5);
}

/* Mobile Gallery */
@media (max-width: 768px) {
    .gallery-container {
        max-width: 95%;
        max-height: 95%;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
    
    .gallery-prev {
        left: -60px;
    }
    
    .gallery-next {
        right: -60px;
    }
    
    .gallery-thumbnails {
        gap: 5px;
        margin-top: 15px;
    }
    
    .gallery-thumb {
        width: 60px;
        height: 60px;
    }
    
    .gallery-close {
        top: -40px;
        font-size: 25px;
    }
}

/* Product Description Styles */
.product-description {
    margin-bottom: 60px;
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.product-description h2 {
    font-size: 24px;
    font-weight: 700;
    color: #221e1f;
    margin-bottom: 20px;
}

.product-description h3 {
    font-size: 18px;
    font-weight: 600;
    color: #221e1f;
    margin: 25px 0 15px 0;
}

.product-description p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

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

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

/* Product List Images */
.product-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    object-position: center;
    background-color: #f8f8f8;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

/* Product Detail Page Styles */
.product-detail-page {
    padding: 0px 0;
}

.breadcrumbs {
    background-color: #f8f8f8;
    padding: 15px 20px;
    margin: 10px 0 30px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

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

.breadcrumbs a:hover {
    color: #f5841f;
}

.breadcrumbs span {
    color: #221e1f;
    font-weight: 500;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.product-images-section {
    position: relative;
}

.main-product-image {
    margin-bottom: 20px;
}

.image-container {
    position: relative;
    background-color: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    background-color: #f8f8f8;
}

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

.sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #e74c3c;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.fullscreen-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 100%;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.thumbnail-images {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail.active {
    border-color: #f5841f;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #f8f8f8;
}

.product-info-section {
    padding: 20px 0;
}

.product-title {
    font-size: 28px;
    font-weight: 700;
    color: #221e1f;
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.current-price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-right: 15px;
}

.old-price {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
}

.product-actions {
    margin-bottom: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.quantity-selector label {
    font-weight: 500;
    color: #221e1f;
}

.quantity-selector input {
    width: 80px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
}

.add-to-cart-btn {
    background-color: #f5841f;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 15px;
    margin-bottom: 15px;
}

.add-to-cart-btn:hover {
    background-color: #e67e22;
}

.add-to-wishlist-btn {
    background-color: transparent;
    color: #f5841f;
    border: 2px solid #f5841f;
    padding: 13px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-wishlist-btn:hover {
    background-color: #f5841f;
    color: white;
}

.product-details {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
}

.detail-item {
    margin-bottom: 10px;
    font-size: 14px;
}

.detail-item strong {
    color: #221e1f;
    margin-right: 10px;
}

.in-stock {
    color: #27ae60;
    font-weight: 600;
}

.product-tabs {
    margin-bottom: 60px;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #f5841f;
    border-bottom-color: #f5841f;
}

.tab-panel {
    display: none;
    line-height: 1.8;
}

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

.tab-panel h3 {
    margin: 20px 0 10px 0;
    color: #221e1f;
    font-size: 18px;
}

.tab-panel ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.tab-panel li {
    margin-bottom: 5px;
}

.social-share {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.share-btn {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background-color: #f5841f;
    color: white;
    border-color: #f5841f;
}

.related-products-section {
    margin-bottom: 60px;
}

.related-products-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #221e1f;
    margin-bottom: 30px;
    text-align: center;
}

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

.related-product {
    text-align: center;
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease;
}

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

.related-product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.related-product h3 {
    font-size: 16px;
    font-weight: 600;
    color: #221e1f;
    margin-bottom: 10px;
}

.related-product .price {
    font-size: 18px;
    font-weight: 700;
    color: #f5841f;
    margin-bottom: 10px;
}

.related-product .rating {
    color: #f5841f;
    font-size: 14px;
}

.newsletter {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.newsletter button {
    background-color: #f5841f;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

/* Product Detail Page Responsive */
@media (max-width: 768px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .current-price {
        font-size: 28px;
    }
    
    .old-price {
        font-size: 20px;
    }
    
    .product-actions {
        text-align: center;
    }
    
    .add-to-cart-btn,
    .add-to-wishlist-btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .breadcrumbs {
        padding: 10px 15px;
        margin: 5px 0 20px 0;
        font-size: 12px;
        flex-wrap: wrap;
    }
    
    .breadcrumbs a,
    .breadcrumbs span {
        margin-right: 5px;
    }
    
    .thumbnail-images {
        justify-content: center;
    }
    
    .related-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        margin-bottom: 20px;
    }
    
    .product-card .product-img {
        height: 200px;
    }
    
    .product-card h3 {
        font-size: 14px;
        line-height: 1.3;
        margin: 10px 0 8px 0;
    }
    
    .product-card .product-price {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .product-card .detail-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .breadcrumbs {
        padding: 8px 10px;
        margin: 5px 0 15px 0;
        font-size: 11px;
    }
    
    .breadcrumbs a,
    .breadcrumbs span {
        margin-right: 3px;
    }
}

/* No results message styling */
.no-results {
    padding: 20px 15px;
    text-align: center;
    color: #666;
    font-style: italic;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 5px;
}
