/* Temel Sıfırlama */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Stilleri */
.main-header {
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    border-bottom: 3px solid #ccc;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.club-logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    background-color: #333;
}

/* Arama Çubuğu Stilleri */
.search-bar {
    display: flex;
    align-items: center;
    background-color: #333;
    border-radius: 5px;
    padding: 5px;
    margin: 0 15px; /* Nav ve sepet arasına boşluk */
}

.search-bar input[type="text"] {
    border: none;
    padding: 8px 10px;
    margin-right: 5px;
    width: 250px;
    border-radius: 3px;
    background-color: #555;
    color: #fff;
}

.search-bar input[type="text"]::placeholder {
    color: #bbb;
}

.search-bar button {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 8px 10px;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.search-bar button:hover {
    background-color: #ccc;
}

.cart a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Hero (Banner) Bölümü */
.hero {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #ccc;
}

/* Ürünler Bölümü ve CSS Grid */
.product-grid {
    padding: 40px 5%;
    text-align: center;
}

.product-grid h3 {
    margin-bottom: 30px;
    font-size: 2em;
    border-bottom: 2px solid #000;
    display: inline-block;
    padding-bottom: 5px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px; 
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
}

.product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-align: center;
    text-decoration: none;
    color: #333;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.product-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.price {
    color: #cc0000;
    font-weight: bold;
    margin: 10px 0;
    font-size: 1.2em;
}

.add-to-cart {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.add-to-cart:hover {
    background-color: #333;
}

/* Ürün Detay Sayfası Stilleri */
.detail-container {
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.product-detail {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.product-images {
    flex: 1 1 400px;
    text-align: center;
}

.main-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #eee;
    margin-bottom: 10px;
}

.thumbnail-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.thumbnail-images img:hover {
    border-color: #000;
}

.product-info {
    flex: 1 1 400px;
}

.detail-price {
    font-size: 2.5em;
    color: #cc0000;
    margin: 15px 0;
}

.options label, .options select, .options input {
    margin-right: 20px;
    font-size: 1em;
    padding: 8px;
}

.detail-button {
    font-size: 1.2em;
    padding: 12px 30px;
    margin-top: 25px;
    width: 100%;
}

/* Sepet Sayfası Stilleri */
.cart-page-container {
    padding: 40px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.cart-items {
    margin-bottom: 30px;
}

.cart-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    justify-content: space-between;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 20px;
}

.item-details {
    flex-grow: 1;
}

.item-details h4 {
    margin: 0;
    font-size: 1.1em;
}

.item-quantity input {
    width: 50px;
    padding: 5px;
    text-align: center;
}

.remove-item {
    background-color: #cc0000;
    color: #fff;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    margin-left: 20px;
    transition: background-color 0.3s;
}

.remove-item:hover {
    background-color: #aa0000;
}

.cart-summary {
    background-color: #fff;
    border: 2px solid #000;
    padding: 20px;
    width: 350px;
    margin-left: auto;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.summary-line.total {
    font-size: 1.3em;
    font-weight: bold;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    margin-top: 10px;
}

.checkout-button {
    width: 100%;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 20px;
}

/* Hakkımızda ve İletişim Sayfası Stilleri */
.about-container, .contact-container {
    padding: 40px 5%;
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.about-container h2, .contact-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2em;
    color: #000;
}

.club-history, .store-mission, .team-values, .contact-form, .contact-info {
    margin-bottom: 40px;
    padding: 20px;
    border-left: 5px solid #000;
    background-color: #fafafa;
}

.club-history h3, .store-mission h3, .team-values h3 {
    color: #cc0000;
    margin-bottom: 10px;
}

blockquote {
    font-style: italic;
    margin: 20px 0;
    padding-left: 20px;
    border-left: 4px solid #cc0000;
    color: #555;
}

/* İletişim Formu Stilleri */
.form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    resize: vertical;
}

.submit-button {
    width: 100%;
    text-align: center;
    font-size: 1.1em;
    padding: 12px;
}

.contact-info {
    text-align: center;
    border-left: none;
    border-top: 1px dashed #ddd;
    padding-top: 30px;
    background-color: #fff;
}

.contact-info a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive Düzenlemeler */
@media (max-width: 900px) {
    .search-bar input[type="text"] {
        width: 180px;
    }
}
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .main-nav ul {
        margin-top: 10px;
        flex-wrap: wrap;
    }
    .search-bar {
        width: 100%;
        margin: 10px 0;
    }
    .search-bar input[type="text"] {
        flex-grow: 1;
        width: auto;
    }
    .cart {
        margin-top: 10px;
    }
    .product-detail {
        flex-direction: column;
        gap: 20px;
    }
    .cart-item {
        flex-wrap: wrap;
        text-align: center;
    }
    .item-details, .item-quantity, .remove-item {
        width: 100%;
        margin-top: 10px;
    }
    .item-quantity {
        display: flex;
        justify-content: center;
    }
    .cart-summary {
        width: 100%;
    }
}