* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #fff;
}

a {
    text-decoration: none;
    color: black;
}

/* Header Styles */
.top-bar {
    background-color: #f8f9fa;
    padding: 8px 0;
    font-size: 14px;
}

.contact-info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.contact-info span,
.contact-info a,
.contact-info button {
    color: #333;
    transition: color 0.3s ease;
}

.contact-info a:hover,
.contact-info button:hover {
    color: #007bff;
    text-decoration: none;
}

.contact-info form {
    margin: 0;
}

.main-nav {
    max-width: 1200px;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.logo h1 {
    font-family: 'Pacifico', cursive;
    font-size: 32px;
    color: #2b3445;
    font-weight: 400;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.logo h1:hover {
    transform: scale(1.02);
    color: #ff4646;
}

.search-bar {
    flex: 0 0 40%;
    display: flex;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
}

.search-bar button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
}

.cart {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart:hover {
    background-color: #f8f9fa;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon svg {
    width: 24px;
    height: 24px;
    color: #333;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff4646;
    color: white;
    font-size: 12px;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

.cart-content {
    display: flex;
    flex-direction: column;
}

.cart-label {
    font-size: 14px;
    color: #666;
}

.cart-total {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* Cart Dropdown */
.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
}

.cart:hover .cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-header {
    padding: 16px;
    border-bottom: 1px solid #eee;
}

.cart-header h3 {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.cart-items {
    max-height: 320px;
    overflow-y: auto;
    padding: 16px;
}

.empty-cart {
    text-align: center;
    padding: 32px 16px;
    color: #666;
}

.empty-cart p {
    margin: 0;
    font-size: 14px;
}

.cart-footer {
    padding: 16px;
    border-top: 1px solid #eee;
    background-color: #f8f9fa;
    border-radius: 0 0 8px 8px;
}

.cart-footer .cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.checkout-button {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-button:hover {
    background-color: #43a047;
}

/* Responsive Cart */
@media (max-width: 768px) {
    .cart-content {
        display: none;
    }

    .cart-dropdown {
        width: 280px;
        right: -70px;
    }

    .cart-dropdown::before {
        right: 82px;
    }
}

.categories {
    background-color: #2b3445;
    padding: 15px 0;
}

.all-products {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 0 15px;
}

/* Main Content Styles */
main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

/* Modern kategori kartları için yeni düzen */
.product-categories {
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-around;
    margin-bottom: 40px;
}

.category-card {
    width: 340px;
    min-width: 220px;
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: #333;
}

.category-card-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.category-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.shop-button {
    margin-left: 24px;
    display: inline-block;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 12px;
    border-bottom: 2px solid #333;
    padding-bottom: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: none;
    border-radius: 0;
    box-shadow: none;
}

.shop-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff4646;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.shop-button:hover {
    color: #ff4646;
    border-bottom-color: transparent;
    background: none;
}

.shop-button:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Eski grid ve büyük kart kurallarını geçersiz kıl */
.product-categories {
    grid-template-columns: unset !important;
    gap: 0px !important;
}

.category-card {
    padding: 10px 10px 10px 10px !important;
    border-radius: 16px !important;
    text-align: left !important;
}

.category-card h2 {
    margin-bottom: 6px;
    font-size: 20px;
}

.category-card p {
    margin-bottom: 0;
    color: #666;
    font-size: 13px;
}

/* Popular Products Section */
.popular-products {
    margin-top: 60px;
}

.popular-products h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.product-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-filters button {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: none;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.product-filters button.active {
    background-color: #2b3445;
    color: white;
    border-color: #2b3445;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.load-more {
    display: block;
    margin: 0 auto;
    padding: 12px 30px;
    background: none;
    border: 1px solid #ddd;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.load-more:hover {
    background-color: #2b3445;
    color: white;
    border-color: #2b3445;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 20px;
    }

    .search-bar {
        flex: 0 0 100%;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-categories {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .product-categories {
        grid-template-columns: 1fr;
        justify-content: center;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-filters {
        flex-wrap: wrap;
    }
}

/* Product Detail Page Styles */
.product-detail {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.product-gallery {
    display: flex;
    gap: 20px;
}

.thumbnail-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: #ddd;
}

.thumbnail.active {
    border-color: #2b3445;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-image {
    flex: 1;
    position: relative;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image img {
    max-width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

.image-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #666;
    font-size: 24px;
    font-weight: 500;
}

.product-info h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 24px;
    font-weight: 700;
    color: #ff4646;
}

.original-price {
    font-size: 18px;
    color: #666;
    text-decoration: line-through;
}

.discount {
    background-color: #ff4646;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
}

.live-view {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    color: #666;
    font-size: 14px;
}

.view-count {
    color: #333;
    font-weight: 500;
}

.color-selection {
    margin-bottom: 30px;
}

.color-selection h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.color-options {
    display: flex;
    gap: 10px;
}

.color-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
}

.color-btn.active {
    border-color: #333;
}

.color-btn.purple {
    background-color: #800080;
}

.color-btn.navy {
    background-color: #000080;
}

.color-btn.black {
    background-color: #000000;
}

.quantity {
    margin-bottom: 30px;
}

.quantity h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    width: 120px;
    height: 36px;
}

.quantity-selector button {
    width: 36px;
    height: 36px;
    border: none;
    background-color: #f8f9fa;
    color: #333;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.quantity-selector button:hover {
    background-color: #e9ecef;
}

.quantity-selector button:active {
    background-color: #dee2e6;
}

.quantity-selector input {
    width: 48px;
    height: 36px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-size: 14px;
    color: #333;
    -moz-appearance: textfield;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Responsive tasarım için */
@media (max-width: 768px) {
    .quantity-selector {
        height: 44px;
        width: 140px;
    }

    .quantity-selector button {
        width: 44px;
        height: 44px;
    }

    .quantity-selector input {
        width: 52px;
        height: 44px;
        font-size: 16px;
    }
}

.add-to-cart {
    width: 100%;
    padding: 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.payment-options {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
    text-decoration: underline;
    cursor: pointer;
    padding-top: 10px;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.product-actions button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.product-actions button svg {
    width: 16px;
    height: 16px;
    justify-self: center;
}

.product-actions .add-to-cart {
    background-color: #4CAF50;
    color: white;
}

.product-actions .add-to-cart:hover {
    background-color: #43a047;
}

.product-actions .ready-designs {
    background-color: #2b3445;
    color: white;
}

.product-actions .ready-designs:hover {
    background-color: #1e2532;
}

.product-actions .custom-design {
    background-color: #ff4646;
    color: white;
}

.product-actions .custom-design:hover {
    background-color: #e63e3e;
}

/* Product Details Section */
.product-details {
    margin-bottom: 60px;
}

.product-details h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.product-details ul {
    list-style: none;
}

.product-details li {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

/* Related Products Section */
.related-products {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.related-products h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.related-products .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.related-products .product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.related-products .product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.related-products .product-image {
    position: relative;
    padding-bottom: 100%;
    background-color: #f8f9fa;
    overflow: hidden;
}

.related-products .product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-products .product-card:hover .product-image img {
    transform: scale(1.05);
}

.related-products .product-info {
    padding: 15px;
}

.related-products .product-info h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-products .product-info .price {
    display: block;
    font-size: 18px;
    color: #333;
    font-weight: 500;
    margin-bottom: 15px;
}

.related-products .product-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.related-products .product-actions button {
    width: 100%;
    min-height: 36px;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design for Related Products */
@media (max-width: 1200px) {
    .related-products .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .related-products .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .related-products .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Category Page Styles */
.category-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    display: grid;
    /*grid-template-columns: 250px 1fr;*/
    gap: 30px;
}

.category-sidebar {
    position: relative;
}

.category-menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #2b3445;
    color: white;
    border: none;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    position: relative;
}

.arrow-icon {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.category-menu-btn.active .arrow-icon {
    transform: rotate(-135deg);
}

.category-nav {
    margin-top: 20px;
    border-left: 2px solid #f0f0f0;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.category-nav.show {
    max-height: 500px;
    /* Yeterince büyük bir değer */
}

.grid-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: white;
    mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h4v4H4zm6 0h4v4h-4zm6 0h4v4h-4zM4 10h4v4H4zm6 0h4v4h-4zm6 0h4v4h-4zM4 16h4v4H4zm6 0h4v4h-4zm6 0h4v4h-4z"/></svg>') no-repeat center;
    -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h4v4H4zm6 0h4v4h-4zm6 0h4v4h-4zM4 10h4v4H4zm6 0h4v4h-4zm6 0h4v4h-4zM4 16h4v4H4zm6 0h4v4h-4zm6 0h4v4h-4z"/></svg>') no-repeat center;
}

.category-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-nav li {
    margin-bottom: 15px;
}

.category-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.category-nav a:hover {
    color: #333;
}

.category-dot {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
}

.category-nav li.active a {
    color: #333;
    font-weight: 500;
}

.category-nav li.active .category-dot {
    background-color: #333;
}

.category-dot.red {
    background-color: #ff4646;
}

.view-all {
    display: block;
    margin-top: 30px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.arrow {
    font-size: 18px;
    margin-left: 5px;
}

/* Category Header Styles */
.category-header {
    position: relative;
    margin-bottom: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #f8e1e6 0%, #e6e6fa 100%);
    border-radius: 12px;
    overflow: hidden;
}

.category-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: url('/img/pattern.svg') no-repeat right center;
    opacity: 0.1;
    pointer-events: none;
}

.category-title {
    margin-bottom: 30px;
}

.category-title h1 {
    font-size: 32px;
    color: #2b3445;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.category-title p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.category-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: white;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
}

.filter-btn.active {
    background-color: #2b3445;
    color: white;
    border-color: #2b3445;
}

.sort-group {
    position: relative;
}

.sort-select {
    padding: 8px 36px 8px 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: white;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    min-width: 200px;
}

.sort-select:hover {
    border-color: #ccc;
}

.sort-select:focus {
    outline: none;
    border-color: #2b3445;
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-header {
        padding: 30px 20px;
    }

    .category-title h1 {
        font-size: 24px;
    }

    .category-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        justify-content: center;
    }

    .sort-group {
        width: 100%;
    }

    .sort-select {
        width: 100%;
        min-width: unset;
    }
}

/* Custom Design Page Styles */
.custom-design-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

.design-options {
    margin: 30px 0;
}

.option-group {
    margin-bottom: 20px;
}

.option-group label {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.custom-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f8f9fa;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg width="14" height="8" viewBox="0 0 14 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L7 7L13 1" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.button-group {
    display: flex;
    gap: 10px;
}

.option-btn {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: none;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-btn.active {
    background-color: #2b3445;
    color: white;
    border-color: #2b3445;
}

.upload-btn {
    width: 100%;
    padding: 12px;
    border: 1px dashed #ddd;
    border-radius: 4px;
    background-color: #f8f9fa;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-btn:hover {
    border-color: #2b3445;
    color: #2b3445;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.action-buttons button {
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart {
    background-color: #4CAF50;
    color: white;
}

.ready-designs {
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.ready-designs h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.designs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.design-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.design-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.design-image {
    position: relative;
    padding-bottom: 100%;
    background-color: #f8f9fa;
}

.design-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.design-info {
    padding: 15px;
}

.design-info h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.design-price {
    color: #333;
    font-weight: 500;
}

.load-more-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.load-more {
    padding: 12px 30px;
    background: none;
    border: 1px solid #ddd;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.load-more:hover {
    background-color: #2b3445;
    color: white;
    border-color: #2b3445;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .load-more-container {
        margin: 30px 0;
    }

    .load-more {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Update Grid Layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Responsive Updates */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-actions button {
        min-height: 40px;
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-actions button {
        min-height: 36px;
        padding: 6px 10px;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-actions {
        grid-template-columns: 1fr;
    }

    .product-actions button {
        min-height: 44px;
        font-size: 14px;
    }
}

/* Product Card Styles */
.product-card {
    position: relative;
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    background-color: #f8f9fa;
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4646;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    z-index: 2;
    letter-spacing: 0.5px;
    display: inline-block;
}

@media (max-width: 600px) {
    .discount-badge {
        font-size: 13px;
        padding: 4px 8px;
        top: 6px;
        left: 6px;
    }
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
    min-height: 180px;
    /* Sabit minimum yükseklik */
}

.product-info h3 {
    font-size: 16px;
    font-weight: 500;
    color: #2b3445;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 44px;
    /* 2 satır için sabit yükseklik */
}

.product-info .price {
    margin: 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #ff4646;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 27px;
    /* Fiyat alanı için sabit yükseklik */
}

.product-info .price .original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    font-weight: normal;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    /* Butonları alta sabitler */
}

.product-actions button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.product-actions button svg {
    width: 16px;
    height: 16px;
    justify-self: center;
}

.product-actions .add-to-cart {
    background-color: #4CAF50;
    color: white;
}

.product-actions .add-to-cart:hover {
    background-color: #43a047;
}

.product-actions .ready-designs {
    background-color: #2b3445;
    color: white;
}

.product-actions .ready-designs:hover {
    background-color: #1e2532;
}

.product-actions .custom-design {
    background-color: #ff4646;
    color: white;
}

.product-actions .custom-design:hover {
    background-color: #e63e3e;
}

/* Discount Badge */
.product-card .discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #ff4646;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    z-index: 1;
}

/* Quick View Button */
.product-card .quick-view {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: white;
    color: #2b3445;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.product-card:hover .quick-view {
    opacity: 1;
    transform: translateY(0);
}

.quick-view:hover {
    background-color: #2b3445;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-card {
        border-radius: 8px;
    }

    .product-info {
        min-height: 160px;
        /* Mobilde daha küçük minimum yükseklik */
        padding: 15px;
    }

    .product-info h3 {
        font-size: 14px;
        min-height: 40px;
        /* Mobilde daha küçük başlık yüksekliği */
    }

    .product-info .price {
        font-size: 16px;
        min-height: 24px;
        /* Mobilde daha küçük fiyat alanı yüksekliği */
    }

    .product-actions button {
        padding: 8px;
        font-size: 13px;
        grid-template-columns: 20px 1fr;
        /* Mobilde daha küçük ikon alanı */
    }

    .product-actions button svg {
        width: 14px;
        height: 14px;
    }

    .quick-view {
        opacity: 1;
        transform: none;
    }
}

/* Cart Item Styles */
.cart-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-size: 14px;
    margin: 0 0 4px 0;
    color: #333;
}

.cart-item-details p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.remove-item {
    background: none;
    border: none;
    color: #999;
    font-size: 18px;
    padding: 4px 8px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: #ff4646;
}

.site-footer {
    background: #23272f;
    color: #fff;
    padding: 48px 0 0 0;
    font-size: 15px;
    margin-top: 40px;
    border-top: 1px solid #333;
}

.site-footer .footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.site-footer .footer-col {
    flex: 1 1 220px;
    min-width: 200px;
    margin-bottom: 32px;
}

.site-footer .footer-col h4 {
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffb347;
}

.site-footer .footer-col.about p {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 18px;
}

.site-footer .footer-col.menu ul,
.site-footer .footer-col.contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-col.menu ul li,
.site-footer .footer-col.contact ul li {
    margin-bottom: 12px;
}

.site-footer .footer-col.menu ul li a,
.site-footer .footer-col.contact ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 15px;
}

.site-footer .footer-col.menu ul li a:hover,
.site-footer .footer-col.contact ul li a:hover {
    color: #ffb347;
}

.site-footer .footer-col.contact ul li i {
    margin-right: 8px;
    color: #ffb347;
}

.site-footer .footer-social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.site-footer .footer-social a {
    color: #fff;
    font-size: 20px;
    transition: color 0.2s;
}

.site-footer .footer-social a:hover {
    color: #ffb347;
}

.site-footer .footer-bottom {
    border-top: 1px solid #333;
    padding: 18px 0 12px 0;
    text-align: center;
    font-size: 14px;
    color: #aaa;
    background: #1a1d23;
}

@media (max-width: 900px) {
    .site-footer .footer-grid {
        flex-direction: column;
        gap: 0;
    }

    .site-footer .footer-col {
        margin-bottom: 24px;
    }
}

/* KVKK ve Çerez Politikası Onay Modalı (Sağ Alt Kutu) */
.consent-modal-float {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 9999;
    max-width: 380px;
    width: 92vw;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    border-radius: 14px;
    background: none;
    pointer-events: auto;
}

.consent-modal {
    background: #fff;
    color: #23272f;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    padding: 28px 24px 20px 24px;
    text-align: center;
    position: relative;
}

.consent-modal h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #ffb347;
}

.consent-modal p {
    font-size: 14px;
    margin-bottom: 10px;
}

.consent-modal a {
    color: #ff4646;
    text-decoration: underline;
}

.consent-modal button {
    background: #ffb347;
    color: #23272f;
    border: none;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    display: inline-block;
}

.consent-modal button#consentRejectBtn {
    background: #eee;
    color: #ff4646;
    border: 1px solid #ff4646;
    margin-left: 12px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.consent-modal button#consentRejectBtn:hover {
    background: #ff4646;
    color: #fff;
}

.consent-modal button:disabled {
    background: #eee;
    color: #aaa;
    cursor: not-allowed;
}

@media (max-width: 600px) {
    .consent-modal-float {
        right: 8px;
        bottom: 8px;
        max-width: 98vw;
        width: 98vw;
    }

    .consent-modal {
        padding: 16px 6px 12px 6px;
    }

    .consent-modal h3 {
        font-size: 16px;
    }

    .consent-modal p {
        font-size: 13px;
    }

    .consent-modal button {
        font-size: 14px;
        padding: 7px 10px;
    }
}

.consent-modal #consentError {
    color: #ff4646;
    margin-top: 16px;
    display: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.2px;
}

.product-features-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 15px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    overflow: hidden;
}

.product-features-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.product-features-table tr:nth-child(even) {
    background: #f8f9fa;
}

.product-features-table tr:last-child td {
    border-bottom: none;
}

.product-features-table td:first-child {
    font-weight: 600;
    color: #444;
    width: 220px;
}

@media (max-width: 600px) {
    .product-features-table td {
        padding: 7px 6px;
        font-size: 13px;
    }

    .product-features-table td:first-child {
        width: 110px;
    }
}

.product-card.out-of-stock {
    opacity: 0.55;
    filter: grayscale(30%);
}

.product-card.out-of-stock .btn.btn-success,
.product-card.out-of-stock .sepet {
    pointer-events: none;
}

.product-card .stock-badge.out-of-stock {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #6c757d;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
    z-index: 3;
}