/* Genel Stiller - Mobile First */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Container ve genel responsive yapı */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
}

.container-fluid {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Header Stilleri - Mobile First */
header {
    background-color: #fff;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-height: 90px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    flex-wrap: nowrap;
    gap: 20px;
    height: 90px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    order: 2;
    flex: 1;
    justify-content: center;
    margin-left: 80px;
    margin-right: 80px;
    position: relative;
    z-index: 1;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.brand-elegance {
    color: #e83e8c;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1;
}

.brand-subtitle {
    font-size: 0.8rem;
    color: #888;
    font-weight: 400;
}

.main-nav {
    display: none;
    justify-content: center;
    order: 3;
    width: auto;
}

.nav-links {
    display: none;
    list-style: none;
    gap: 20px;
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 999;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 12px 0;
    position: relative;
    display: block;
    text-align: center;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #e83e8c;
    left: 0;
    bottom: 0;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #e83e8c;
}

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

.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    order: 3;
    flex-wrap: nowrap;
    justify-content: flex-end;
    margin-right: 0;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.search-box {
    display: flex;
    align-items: center;
    position: relative;
    border: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    padding: 8px 12px;
    min-width: 50px;
    max-width: 160px;
}

.search-box input {
    border: none;
    background: transparent;
    padding: 5px;
    width: 100px;
    outline: none;
    font-size: 0.9rem;
}

.search-box button {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon {
    width: 16px;
    height: 16px;
    fill: #999;
}

.user-login,
.cart-section {
    display: flex;
    align-items: center;
}

.user-link,
.cart-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 20px;
    transition: all 0.3s;
    background: #f8f8f8;
    font-size: 1rem;
}

.user-link:hover,
.cart-link:hover {
    background: #e83e8c;
    color: white;
}

.user-link i,
.cart-link i {
    font-size: 16px;
}

.user-icon,
.cart-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.user-text,
.cart-text {
    font-size: 13px;
    font-weight: 500;
}

.user-link:hover .user-icon,
.cart-link:hover .cart-icon,
.user-link:hover .user-text,
.cart-link:hover .cart-text {
    color: white;
    fill: white;
}

/* Hero Section - Mobile First */
.hero {
    height: 70vh;
    min-height: 500px;
    background-image: linear-gradient(to right,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.95) 20%,
            rgba(255, 255, 255, 0.85) 40%,
            rgba(255, 255, 255, 0.6) 60%,
            rgba(255, 255, 255, 0.2) 80%,
            rgba(255, 255, 255, 0) 100%),
        url('../images/AnaTema.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px 0;
}

.hero::before {
    display: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 100%;
    color: #1a1a1a;
    font-weight: 700;
}

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

.hero-buttons .btn {
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    width: 100%;
    max-width: 250px;
    text-align: center;
}

.hero-buttons .btn-primary {
    background: #ff69b4 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 18px 44px !important;
    font-size: 1.18em !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 18px rgba(255, 105, 180, 0.13) !important;
    letter-spacing: 1px !important;
    transition: background 0.3s, box-shadow 0.3s, transform 0.18s !important;
    outline: none !important;
    cursor: pointer !important;
    margin-right: 10px !important;
    display: inline-block !important;
}

.hero-buttons .btn-primary:hover,
.hero-buttons .btn-primary:focus {
    background: #ff1493 !important;
    box-shadow: 0 8px 32px rgba(255, 20, 147, 0.18) !important;
    transform: scale(1.07) !important;
    color: #fff !important;
}

.hero-buttons .btn-outline {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.hero-buttons .btn-outline:hover {
    background-color: #1a1a1a;
    color: white;
}

.pink-text {
    color: #e83e8c;
    display: inline;
}

.hero-desc {
    max-width: 100%;
    margin: 0 auto 2.5rem auto;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

/* Override: Align hero description text to the left */
.hero-desc {
    text-align: left;
    margin: 0 0 2.5rem 0;
}

/* Categories Section - Mobile First */
.categories {
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

.section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 0 20px 1.5rem;
    position: relative;
}

.section-desc:after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background-color: #e83e8c;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.category-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 5px;
    width: 100%;
    box-sizing: border-box;
}

.category-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.category-card h3 {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    color: #fff;
    padding: 1rem;
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.category-card h3:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #e83e8c;
    margin: 10px auto 0;
}

.category-card .btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    background: rgba(85, 85, 85, 0.7);
    color: #fff;
    border: none;
    padding: 0.5rem 1.8rem;
    font-size: 0.9rem;
    border-radius: 25px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.category-card .btn:hover {
    background: rgba(105, 105, 105, 0.9);
    color: #fff;
}

/* Page Header */
.page-header {
    background-color: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.page-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.page-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section Layout */
.products-section {
    padding: 40px 0;
    background-color: #f9f9f9;
    min-height: 100vh;
    width: 100%;
    box-sizing: border-box;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.products-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Filters Panel - Mobile First */
.filters {
    width: 100%;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: static;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.filters:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.filters h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.filter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.form-group label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.form-group select {
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    color: #333;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff69b4' 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;
    background-size: 12px;
}

.form-group select:hover {
    border-color: #ff69b4;
}

.form-group select:focus {
    outline: none;
    border-color: #ff69b4;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.filter-buttons {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #e83e8c;
    color: white;
}

.btn-primary:hover {
    background: #d12e7c;
}

.btn-secondary {
    background: #f5f5f5;
    color: #333;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #000;
    color: #fff;
}

.btn i {
    font-size: 14px;
}

/* Products Content */
.products-content {
    flex: 1;
    min-width: 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #333;
}

.section-desc {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Products Grid - Mobile First */
.products-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 0 5px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.product-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f8f8f8;
}

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 1;
}

.product-badge.new {
    background-color: #4CAF50;
    color: #fff;
}

.product-badge.discount {
    background-color: #f44336;
    color: #fff;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(232, 62, 140, 0.10);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

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

.product-card .product-overlay .btn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
    font-size: 1.08em;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(232, 62, 140, 0.13);
}

.product-card:hover .product-overlay .btn {
    opacity: 1;
    transform: translateY(0);
}

.product-card .product-overlay .btn.btn-primary {
    background: linear-gradient(90deg, #e83e8c 0%, #ff69b4 100%);
    color: #fff;
    border: none;
}

.product-card .product-overlay .btn.btn-primary:hover {
    background: linear-gradient(90deg, #ff69b4 0%, #e83e8c 100%);
    color: #fff;
    box-shadow: 0 8px 32px rgba(232, 62, 140, 0.18);
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.1rem;
    margin: 0 0 1rem;
    color: #333;
    font-weight: 600;
}

.product-price {
    margin-bottom: 0.5rem;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.current-price {
    color: #333;
    font-weight: 700;
    font-size: 1.1rem;
}

.rent-price {
    color: #666;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.rent-label {
    color: #888;
    margin-right: 0.5rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.product-category {
    color: #666;
    font-size: 0.9rem;
}

.product-status {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-status.available {
    background-color: #e8f5e9;
    color: #4caf50;
}

.product-status.rented {
    background-color: #fff3e0;
    color: #ff9800;
}

.product-status.sold {
    background-color: #ffebee;
    color: #f44336;
}

/* Tablet ve Desktop Responsive */
@media (min-width: 768px) {
    .header-container {
        flex-wrap: nowrap;
        padding: 0 15px;
    }

    .logo {
        order: 1;
        flex: none;
        margin-left: 0;
        justify-content: flex-start;
    }

    .main-nav {
        display: flex;
        order: 2;
        width: auto;
        flex: 1;
        justify-content: center;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        width: auto;
    }

    .nav-links a {
        padding: 5px 0;
        text-align: left;
    }

    .menu-toggle {
        display: none;
    }

    .header-icons {
        order: 3;
    }

    .search-box {
        min-width: 120px;
        padding: 5px 10px;
    }

    .search-box input {
        width: 100px;
        font-size: 0.9rem;
        padding: 4px;
    }

    .user-link,
    .cart-link {
        padding: 8px 15px;
        font-size: 0.8rem;
        gap: 6px;
    }

    .brand-elegance {
        font-size: 20px;
    }

    .brand-subtitle {
        font-size: 0.7rem;
    }

    .hero-content {
        text-align: left;
        padding: 0 40px;
    }

    .hero-title {
        font-size: 3.5rem;
        text-align: left;
    }

    .hero-desc {
        text-align: left;
        max-width: 500px;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }

    .hero-buttons .btn {
        width: auto;
        max-width: none;
    }

    .category-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        padding: 0 2rem;
    }

    .category-card img {
        height: 300px;
    }

    .products-container {
        flex-direction: row;
        gap: 30px;
    }

    .filters {
        width: 280px;
        position: sticky;
        top: 100px;
        margin-bottom: 0;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 30px;
        margin-left: 30px;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 4.2rem;
    }

    .hero-content {
        padding: 0 4rem;
    }

    .category-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .category-card img {
        height: 350px;
    }

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

    .categories {
        padding: 5rem 0;
    }
}

/* Mobile specific adjustments */
@media (max-width: 767px) {
    .container {
        padding: 0 5px;
    }

    .container-fluid {
        padding: 0 5px;
    }

    .hero {
        height: 60vh;
        min-height: 400px;
        padding: 10px 0;
    }

    .hero-content {
        padding: 0 10px;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .categories {
        padding: 2rem 0;
    }

    .category-container {
        padding: 0;
        gap: 1rem;
    }

    .category-card {
        margin: 0 auto;
        max-width: 350px;
    }

    .products-section {
        padding: 20px 0;
    }

    .products-container {
        margin-top: 15px;
        gap: 15px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }

    .product-card {
        margin: 0 auto;
        max-width: 350px;
    }

    .filters {
        padding: 10px;
        margin-bottom: 15px;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .btn-secondary {
        width: 100%;
        height: auto;
    }

    .header-container {
        padding: 0 20px;
        position: relative;
        height: 80px;
    }

    .nav-links {
        padding: 15px 10px;
    }

    /* Mobile header optimizasyonu */
    .search-box {
        min-width: 30px;
        max-width: 120px;
        padding: 6px 8px;
    }

    .search-box input {
        width: 80px;
        font-size: 0.8rem;
        padding: 3px;
    }

    .user-link,
    .cart-link {
        padding: 8px 10px;
        font-size: 0.85rem;
        gap: 5px;
    }

    .user-link i,
    .cart-link i {
        font-size: 12px;
    }

    .user-icon,
    .cart-icon {
        width: 14px;
        height: 14px;
    }

    .user-text,
    .cart-text {
        font-size: 10px;
    }

    .brand-elegance {
        font-size: 16px;
    }

    .brand-subtitle {
        font-size: 0.5rem;
    }
}

/* No Products Message */
.no-products {
    text-align: center;
    padding: 3rem;
    background: #fff;
    border-radius: 8px;
    color: #666;
    font-size: 1.1rem;
    grid-column: 1 / -1;
}

/* Error Message */
.error-message {
    text-align: center;
    padding: 1rem;
    background-color: #ffebee;
    color: #f44336;
    border-radius: 8px;
    margin: 1rem 0;
    font-weight: 500;
}

/* --- YENİ ELEGANCE FOOTER TASARIMI --- */
.footer-elegance {
    background: #232634;
    color: #cfcfd6;
    font-family: 'Montserrat', Arial, sans-serif;
    padding-top: 48px;
    font-size: 1.08rem;
}

.footer-elegance-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    padding: 0 60px;
}

.footer-elegance-title {
    color: #e83e8c;
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-elegance-desc {
    color: #cfcfd6;
    margin-bottom: 28px;
    font-size: 1.08rem;
    line-height: 1.7;
}

.footer-elegance-social {
    display: flex;
    gap: 22px;
    margin-top: 8px;
}

.footer-elegance-social a {
    color: #cfcfd6;
    font-size: 1.25rem;
    transition: color 0.2s;
}

.footer-elegance-social a:hover {
    color: #e83e8c;
}

.footer-elegance-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-elegance-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-elegance-col ul li {
    margin-bottom: 12px;
    color: #cfcfd6;
    font-size: 1.05rem;
}

.footer-elegance-col ul li a {
    color: #cfcfd6;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-elegance-col ul li a:hover {
    color: #e83e8c;
    text-decoration: underline;
}

.footer-elegance-heading {
    color: #fff;
    font-weight: 600;
    font-size: 1.18rem;
    margin-bottom: 18px;
}

.footer-elegance-col.contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #cfcfd6;
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.footer-elegance-col.contact i {
    color: #e83e8c;
    font-size: 1.1em;
    min-width: 20px;
    margin-top: 3px;
}

.footer-elegance-payments {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.footer-elegance-payments img {
    height: 28px;
    width: auto;
    filter: grayscale(0.2) brightness(0.95);
    opacity: 0.95;
    transition: filter 0.2s, opacity 0.2s;
}

.footer-elegance-payments img:hover {
    filter: none;
    opacity: 1;
}

.footer-elegance-bottom {
    border-top: 1px solid #393b4a;
    margin-top: 48px;
    padding: 18px 0 8px 0;
    background: transparent;
}

.footer-elegance-bottom-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: right;
    color: #a3a3b3;
    font-size: 1.01rem;
}

.footer-elegance-bottom-inner span {
    color: #a3a3b3;
}

@media (max-width: 1100px) {
    .footer-elegance-container {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 0 24px;
    }

    .footer-elegance-bottom-inner {
        padding: 0 24px;
        text-align: center;
    }
}

@media (max-width: 700px) {
    .footer-elegance-container {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 10px;
    }

    .footer-elegance-bottom-inner {
        padding: 0 10px;
        text-align: center;
    }

    .footer-elegance-col {
        align-items: flex-start;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2.2rem;
    cursor: pointer;
    color: #e83e8c;
    order: 1;
    padding: 15px;
    transition: color 0.3s;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.menu-toggle:hover {
    color: #ff69b4;
}

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

/* Responsive Tasarım */
@media (max-width: 992px) {
    .header-container {
        flex-wrap: wrap;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

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

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-listing {
        grid-template-columns: 1fr;
    }

    .filters {
        position: static;
        margin-bottom: 2rem;
    }

    .size-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        display: none;
        margin-top: 1rem;
        flex-direction: column;
        width: 100%;
    }

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

    .nav-links li {
        margin: 0.5rem 0;
    }

    .header-icons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }

    .hero {
        background-position: center;
        text-align: center;
    }

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

    .hero-title {
        font-size: 3rem;
        margin: 0 auto 1.5rem;
    }

    .hero-desc {
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .abiye-listesi {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .products {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .size-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .product-listing {
        padding: 0 1rem;
    }

    .abiye-item img {
        height: 300px;
    }
}

/* Arama Kutusu ve Sonuçları */
.search-results {
    padding: 4rem 0;
}

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

.search-query {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-card h3 {
    padding: 1rem;
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.product-card .price {
    padding: 0 1rem;
    color: #e83e8c;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.product-card .description {
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    -moz-line-clamp: 2;
    -moz-box-orient: vertical;
    display: box;
    line-clamp: 2;
    box-orient: vertical;
    max-height: 2.8em;
    /* Fallback for non-webkit browsers - 2 lines */
}

.product-buttons {
    padding: 1rem;
    display: flex;
    gap: 1rem;
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
    display: none;
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

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

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

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

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}

.search-result-info {
    flex: 1;
}

.search-result-info h4 {
    margin: 0;
    font-size: 0.9rem;
    color: #333;
}

.search-result-info .price {
    margin: 4px 0 0;
    font-size: 0.85rem;
    color: #e83e8c;
    font-weight: 600;
}

.instagram-section {
    padding: 5rem 0;
    text-align: center;
    background-color: #f8f9fa;
    margin-top: -2rem;
}

/* Scroll reveal: upward animation for Instagram section */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.reveal-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.instagram-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.instagram-desc {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.instagram-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 0 10px;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    transition: transform 0.3s;
    width: 140px;
    height: 140px;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s, filter 0.3s;
}

.instagram-item:hover img {
    filter: brightness(0.7);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    color: #fff;
    font-size: 2.5rem;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.instagram-follow-btn i {
    font-size: 1.3rem;
}

@media (max-width: 992px) {
    .instagram-grid {
        gap: 15px;
        max-width: 600px;
    }

    .instagram-item {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .instagram-grid {
        gap: 10px;
        max-width: 400px;
    }

    .instagram-item {
        width: 100px;
        height: 100px;
    }

    /* Mobile-only: prevent follow buttons from overflowing */
    .instagram-section .btn {
        display: block;
        width: 100%;
        max-width: 320px;
        margin: 12px auto 0 auto !important;
        /* override inline margin-left */
        white-space: normal;
        /* allow wrapping */
        line-height: 1.3;
        padding: 12px 16px;
        text-align: center;
    }

    .instagram-section .btn i {
        margin-right: 8px;
    }

    /* Mobile-only: normalize action buttons to avoid overflow */
    .view-details,
    .btn.btn-primary.show-more-btn,
    .custom-tailor-btn {
        display: block;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        text-align: center;
        margin: 12px 0 0 0 !important;
    }

    .hero-buttons .btn {
        max-width: 100%;
    }
}

.admin-login {
    margin-left: 15px;
}

.admin-link {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.admin-link:hover {
    color: #666;
}

.admin-icon {
    margin-right: 5px;
}

.admin-text {
    font-size: 14px;
    font-weight: 500;
}

/* Ürün Detay Modern Tasarım */
.product-detail-outer {
    max-width: 900px;
    margin: 100px auto 40px auto;
    padding: 32px 18px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-detail-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.product-images {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.main-image {
    width: 260px;
    height: 340px;
    background: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-title {
    font-size: 2em;
    color: #e83e8c;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 4px;
}

.product-meta {
    color: #888;
    font-size: 1.1em;
    margin-bottom: 8px;
}

.product-details {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 18px 16px;
    margin-bottom: 8px;
}

.detail-group {
    margin-bottom: 12px;
}

.detail-group h3 {
    font-size: 1.08rem;
    margin-bottom: 8px;
    color: #e83e8c;
    font-family: 'Playfair Display', serif;
}

.sizes,
.colors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-item {
    padding: 6px 14px;
    background: #fff;
    border-radius: 5px;
    font-size: 1em;
    border: 1.5px solid #eee;
    color: #888;
    transition: border 0.2s, color 0.2s;
}

.size-item.available {
    border: 1.5px solid #e83e8c;
    color: #e83e8c;
    font-weight: 600;
    background: #fff0f6;
}

.size-item.unavailable {
    opacity: 0.5;
    background: #f5f5f5;
}

.color-item {
    min-width: 60px;
    padding: 7px 16px;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
    border: 1.5px solid #eee;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: transform 0.2s;
    cursor: pointer;
    margin-right: 8px;
}

.color-item:hover {
    transform: scale(1.08);
    box-shadow: 0 2px 8px rgba(232, 62, 140, 0.10);
}

.product-prices {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 8px;
}

.price-item {
    margin-bottom: 6px;
}

.price-label {
    font-weight: 500;
    margin-right: 8px;
    color: #666;
}

.price-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: #e83e8c;
}

.product-actions {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.btn {
    padding: 11px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08em;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #e83e8c;
    color: white;
}

.btn-primary:hover {
    background-color: #d12e7c;
}

.btn-secondary {
    background-color: #f8f9fa;
    color: #333;
    border: 1.5px solid #ddd;
}

.btn-secondary:hover {
    background-color: #e9ecef;
}

@media (max-width: 900px) {
    .product-detail-container {
        flex-direction: column;
        gap: 20px;
    }

    .main-image {
        width: 100%;
        height: 220px;
    }
}

@media (max-width: 600px) {
    .product-detail-outer {
        margin: 40px 0 10px 0;
        padding: 2px 0 6px 0;
        border-radius: 0;
    }

    .main-image {
        height: 120px;
    }

    .product-title {
        font-size: 1.2em;
    }
}

/* Hakkımızda Sayfası Stilleri */
.about-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.about-content {
    margin-top: 30px;
    line-height: 1.8;
    color: #444;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e83e8c;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
}

@media (max-width: 768px) {
    .about-container {
        margin: 0 15px;
        padding: 20px;
    }

    .about-content h2 {
        font-size: 1.5rem;
        margin: 30px 0 15px;
    }
}

/* İletişim Sayfası Stilleri */
.contact-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.contact-content {
    margin-top: 30px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e83e8c;
}

.contact-info p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
}

.contact-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details i {
    color: #e83e8c;
    width: 20px;
    text-align: center;
}

.contact-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.working-hours {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.working-hours table {
    width: 100%;
    border-collapse: collapse;
}

.working-hours th,
.working-hours td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.working-hours th {
    font-weight: 600;
    color: #333;
}

.social-media {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #000;
    text-decoration: none;
}

.social-link i {
    font-size: 1.5rem;
    color: #000;
}

.social-link:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-link:hover i {
    color: #fff;
}

@media (max-width: 768px) {
    .contact-info h2 {
        font-size: 1.5rem;
        margin: 30px 0 15px;
    }

    .contact-form {
        padding: 20px;
    }

    .social-media {
        flex-direction: column;
    }
}

/* Featured Products */
.featured-products {
    padding: 60px 0 30px 0;
    background: #faf9fa;
}

.featured-products .section-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
    color: #d81b60;
}

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

.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
    transform: translateY(-4px);
}

.product-image {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #f5f5f5;
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    z-index: 2;
    margin-bottom: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.badge-new {
    background: #ff69b4;
}

.badge {
    display: inline-block;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 600;
    margin-left: 8px;
    vertical-align: middle;
}

.badge-available {
    background: #e0f7e9;
    color: #2e7d32;
    border: 1px solid #b2dfdb;
}

.badge-unavailable {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

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

.product-title {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #e83e8c;
}

.product-price {
    font-size: 1.1em;
    color: #d81b60;
    margin-bottom: 8px;
}

.btn.btn-primary {
    background: #ff69b4;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 18px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s;
    display: inline-block;
}

/* --- Özel Dikim ve Prova Randevusu Bölümü --- */
.custom-tailor-section {
    background: #fcf7fb;
    padding: 70px 0 60px 0;
}

.custom-tailor-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.custom-tailor-left {
    flex: 1.1;
    min-width: 340px;
    max-width: 520px;
}

.custom-tailor-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #232634;
    margin-bottom: 18px;
}

.custom-tailor-desc {
    color: #666;
    font-size: 1.13rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.custom-tailor-list {
    list-style: none;
    margin: 0 0 32px 0;
    padding: 0;
}

.custom-tailor-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
    font-size: 1.08rem;
    color: #232634;
}

.custom-tailor-list i {
    color: #e83e8c;
    background: #fbe6f2;
    border-radius: 50%;
    font-size: 1.25rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.custom-tailor-list b {
    color: #232634;
    font-weight: 700;
}

.custom-tailor-list span {
    color: #666;
    font-size: 0.98em;
    font-weight: 400;
}

.custom-tailor-btn {
    background: #e83e8c;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 38px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
    box-shadow: 0 4px 18px rgba(232, 62, 140, 0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    cursor: pointer;
    display: inline-block;
}

.custom-tailor-btn:hover {
    background: #d12e7c;
    box-shadow: 0 8px 32px rgba(232, 62, 140, 0.13);
    transform: scale(1.05);
}

.custom-tailor-right {
    flex: 1.2;
    min-width: 340px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.custom-tailor-image-wrapper {
    position: relative;
    width: 480px;
    max-width: 100%;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(232, 62, 140, 0.10), 0 2px 8px rgba(0, 0, 0, 0.07);
    background: #fff;
}

.custom-tailor-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

.custom-tailor-hours {
    position: absolute;
    bottom: 22px;
    left: 22px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(232, 62, 140, 0.10), 0 2px 8px rgba(0, 0, 0, 0.07);
    padding: 22px 28px 18px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-width: 230px;
    z-index: 2;
}

.custom-tailor-hours-icon {
    background: #fbe6f2;
    color: #e83e8c;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-top: 2px;
}

.custom-tailor-hours-info {
    flex: 1;
}

.custom-tailor-hours-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #232634;
    margin-bottom: 6px;
}

.custom-tailor-hours-title span {
    font-size: 0.98em;
    color: #e83e8c;
    font-weight: 500;
}

.custom-tailor-hours-table {
    font-size: 0.98em;
    color: #666;
    margin-top: 2px;
}

.custom-tailor-hours-table div {
    margin-bottom: 2px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.custom-tailor-hours-table b {
    color: #232634;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .custom-tailor-container {
        flex-direction: column;
        gap: 40px;
        align-items: stretch;
    }

    .custom-tailor-right {
        justify-content: center;
    }

    .custom-tailor-image-wrapper {
        width: 100%;
        max-width: 420px;
    }

    .custom-tailor-image {
        height: 400px;
    }
}

@media (max-width: 700px) {
    .custom-tailor-section {
        padding: 40px 0 30px 0;
    }

    .custom-tailor-container {
        flex-direction: column;
        gap: 24px;
        padding: 0 10px;
    }

    .custom-tailor-left {
        max-width: 100%;
        min-width: 0;
    }

    .custom-tailor-title {
        font-size: 1.5rem;
    }

    .custom-tailor-image-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .custom-tailor-image {
        height: 220px;
        border-radius: 14px;
    }

    .custom-tailor-hours {
        position: static;
        margin: 18px auto 0 auto;
        min-width: 0;
        width: 100%;
        padding: 16px 12px 12px 12px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(232, 62, 140, 0.10), 0 1px 4px rgba(0, 0, 0, 0.07);
    }

    .custom-tailor-hours-icon {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }
}

.btn.btn-primary i.fab.fa-instagram {
    color: #fff !important;
}

.btn-outline-pink {
    background: #fff;
    color: #e83e8c;
    border: 2px solid #e83e8c;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.btn-outline-pink i {
    color: #e83e8c !important;
    font-size: 1.3rem;
}

.btn-outline-pink:hover {
    background: #fbe6f2;
    color: #e83e8c;
    box-shadow: 0 2px 8px rgba(232, 62, 140, 0.08);
    text-decoration: none;
}

.btn-outline-pink:hover i {
    color: #e83e8c !important;
}

.btn-show-more {
    background: linear-gradient(90deg, #e83e8c 0%, #ff69b4 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 16px 44px;
    font-size: 1.18em;
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(232, 62, 140, 0.13);
    letter-spacing: 1px;
    transition: background 0.3s, box-shadow 0.3s, transform 0.18s;
    outline: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.btn-show-more i {
    font-size: 1.2em;
    transition: transform 0.2s;
}

.btn-show-more:hover {
    background: linear-gradient(90deg, #ff69b4 0%, #e83e8c 100%);
    box-shadow: 0 8px 32px rgba(232, 62, 140, 0.18);
    transform: scale(1.07);
    color: #fff;
    text-decoration: none;
}

.btn-show-more:hover i {
    transform: translateX(6px);
}

.show-more-btn {
    transition:
        transform 0.18s cubic-bezier(.4, 2, .3, 1),
        box-shadow 0.3s,
        background 0.2s,
        color 0.2s;
}

.show-more-btn:hover {
    transform: scale(1.09) translateY(-2px);
    box-shadow: 0 8px 32px 0 rgba(232, 62, 140, 0.25), 0 0 16px 2px #e83e8c33;
    background: #ff1493;
    color: #fff;
    filter: brightness(1.08);
}

/* --- MOBİL GÜZELLEŞTİRME BAŞLANGIÇ --- */
@media (max-width: 768px) {

    /* Header ve Menü */
    .header-container {
        padding: 5px;
        flex-direction: row;
        align-items: center;
        position: relative;
    }

    .brand-elegance {
        font-size: 22px;
        text-align: center;
        margin: 0;
        display: block;
        margin-left: 70px;
        margin-right: 70px;
        position: relative;
        z-index: 1;
    }

    .menu-toggle {
        display: block;
        font-size: 2.2rem;
        background: none;
        border: none;
        color: #e83e8c;
        margin: 0 auto 10px auto;
        z-index: 1201;
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 80vw;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 24px 24px 24px;
        box-shadow: 2px 0 16px rgba(0, 0, 0, 0.08);
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(.4, 2, .6, 1);
        display: flex;
        z-index: 1202;
    }

    .nav-links.active {
        transform: translateX(0);
        display: flex;
    }

    .nav-links li {
        margin: 18px 0;
        width: 100%;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 12px 0;
        width: 100%;
        display: block;
    }

    /* Menü açıldığında arka plan karartma */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.25);
        z-index: 1200;
        pointer-events: all;
    }

    /* Hamburger menü animasyonu için (isteğe bağlı) */
    .menu-toggle {
        transition: color 0.2s;
    }

    .menu-toggle:active {
        color: #ff69b4;
    }

    /* Header ikonları */
    .header-icons {
        flex-direction: row;
        justify-content: flex-end;
        margin: 0;
        gap: 12px;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }

    /* Ürün Kartları */
    .products-grid,
    .abiye-listesi,
    .products {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 0;
    }

    .product-card,
    .category-card {
        margin: 0 auto;
        width: 100%;
        max-width: 350px;
        box-shadow: 0 2px 12px rgba(232, 62, 140, 0.08);
        border-radius: 12px;
        box-sizing: border-box;
    }

    .product-card img,
    .category-card img {
        height: 220px;
        object-fit: cover;
        border-radius: 12px 12px 0 0;
    }

    .product-card h3,
    .category-card h3 {
        font-size: 1.1rem;
        padding: 0.7rem 0.5rem 0.3rem 0.5rem;
    }

    .product-card .price {
        font-size: 1.1rem;
        padding: 0 0.5rem 0.7rem 0.5rem;
    }

    /* Footer */
    .footer-elegance-container {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        text-align: center;
    }

    .footer-elegance-col {
        width: 100%;
        margin-bottom: 12px;
    }

    .footer-elegance-bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Formlar ve Butonlar */
    input,
    select,
    textarea,
    button {
        font-size: 1.1rem;
        padding: 12px 10px;
        border-radius: 8px;
        width: 100%;
        margin-bottom: 12px;
    }

    .btn,
    .btn-primary,
    .btn-secondary {
        font-size: 1.1rem;
        padding: 12px 0;
        border-radius: 8px;
        width: 100%;
        margin-bottom: 10px;
    }
}

/* --- MOBİL GÜZELLEŞTİRME SONU --- */

/* --- MOBİL GELİŞMİŞ İYİLEŞTİRME BAŞLANGIÇ --- */
@media (max-width: 768px) {

    /* Header ve Menü */
    .header-container {
        flex-direction: column;
        align-items: stretch;
        padding: 10px 8px;
        gap: 0;
    }

    .brand-elegance {
        font-size: 1.3rem;
        text-align: center;
        margin: 0 auto 10px auto;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 80vw;
    }

    .header-icons {
        flex-direction: row;
        justify-content: center;
        margin: 10px 0 0 0;
        gap: 16px;
    }

    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        background: none;
        border: none;
        color: #e83e8c;
        margin: 0;
        z-index: 1201;
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 80vw;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 24px 24px 24px;
        box-shadow: 2px 0 16px rgba(0, 0, 0, 0.08);
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(.4, 2, .6, 1);
        display: flex;
        z-index: 1202;
        gap: 0;
    }

    .nav-links.active {
        transform: translateX(0);
        display: flex;
    }

    .nav-links li {
        margin: 18px 0;
        width: 100%;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 12px 0;
        width: 100%;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Kartlar, Ürünler, Kategoriler */
    .products-grid,
    .abiye-listesi,
    .products,
    .category-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .product-card,
    .category-card {
        margin: 0 auto;
        width: 100%;
        max-width: 340px;
        box-shadow: 0 2px 12px rgba(232, 62, 140, 0.08);
        border-radius: 12px;
        overflow: hidden;
    }

    .product-card img,
    .category-card img {
        height: 220px;
        object-fit: cover;
        border-radius: 12px 12px 0 0;
        width: 100%;
        display: block;
    }

    .product-card h3,
    .category-card h3 {
        font-size: 1.1rem;
        padding: 0.7rem 0.5rem 0.3rem 0.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-card .price {
        font-size: 1.1rem;
        padding: 0 0.5rem 0.7rem 0.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Tablolar ve Listeler */
    table,
    .table {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        font-size: 0.97rem;
        border-radius: 8px;
        margin-bottom: 16px;
    }

    table th,
    table td,
    .table th,
    .table td {
        min-width: 90px;
        padding: 8px 6px;
        text-align: left;
        vertical-align: middle;
        word-break: break-word;
    }

    /* Formlar ve Butonlar */
    form,
    .form-group,
    .form-row {
        width: 100%;
        margin-bottom: 12px;
        display: block;
    }

    label {
        display: block;
        margin-bottom: 6px;
        font-size: 1rem;
        font-weight: 500;
    }

    input,
    select,
    textarea,
    button {
        font-size: 1rem;
        padding: 12px 10px;
        border-radius: 8px;
        width: 100%;
        margin-bottom: 12px;
        box-sizing: border-box;
    }

    .btn,
    .btn-primary,
    .btn-secondary {
        font-size: 1rem;
        padding: 12px 0;
        border-radius: 8px;
        width: 100%;
        margin-bottom: 10px;
        white-space: normal;
    }

    /* Uzun metinler için taşma önleme */
    .product-card h3,
    .category-card h3,
    .product-card .price,
    .nav-links a,
    .brand-elegance,
    .footer-elegance-col,
    .footer-elegance-title,
    .footer-elegance-desc {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* Grid ve Satır Düzeni */
    .row,
    .container,
    .container-fluid {
        display: block !important;
        padding: 0 5px;
        margin: 0;
        box-sizing: border-box;
    }

    /* Footer */
    .footer-elegance-container {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        text-align: center;
    }

    .footer-elegance-col {
        width: 100%;
        margin-bottom: 12px;
    }

    .footer-elegance-bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Aralıklar ve Boşluklar */
    .mb-3,
    .mb-4,
    .my-3,
    .my-4 {
        margin-bottom: 12px !important;
    }

    .mt-3,
    .mt-4,
    .my-3,
    .my-4 {
        margin-top: 12px !important;
    }

    /* Fontlar */
    body,
    .header-container,
    .nav-links,
    .product-card,
    .category-card,
    .table,
    label,
    input,
    select,
    textarea,
    button {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* --- MOBİL GELİŞMİŞ İYİLEŞTİRME SONU --- */