* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    width: 100%;
    height: auto;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #fafafa;
    color: #262626;
    font-size: 14px;
}

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

header {
    background-color: rgba(255, 255, 255, 0.7);
    /* Yarı saydam beyaz */
    border-bottom: 1px solid #dbdbdb;
    position: sticky;
    top: 0;
    z-index: 10;

    /* Blur efekti */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* Safari desteği */
}


.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
}

.text {
    font-size: 24px;
    font-weight: 600;
    background: black;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-decoration: none;
    animation: gradientMove 3s infinite linear;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}


@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.header-icons i {
    font-size: 24px;
    margin-left: 15px;
    color: #262626;
    cursor: pointer;
}

.profile-info {
    display: flex;
    flex-direction: column;
    padding: 16px 16px 24px;
}

.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 28px;
    border: 1px solid #dbdbdb;
}

/* Kampanya Banner Stilleri */
.kampanya-banners-section {
    margin: 20px 0;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.kampanya-banners-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: flex-start;
}

.kampanya-banner-item {
    flex: 0 0 auto;
    width: calc(50% - 7.5px);
    max-width: 580px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.kampanya-banner-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.kampanya-banner-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.kampanya-banner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.kampanya-banner-item:hover .kampanya-banner-img {
    transform: scale(1.03);
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .kampanya-banners-section {
        padding: 0 15px;
    }

    .kampanya-banners-wrapper {
        gap: 12px;
    }

    .kampanya-banner-item {
        width: calc(50% - 6px);
        height: 150px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .kampanya-banners-section {
        padding: 0 10px;
    }

    .kampanya-banners-wrapper {
        gap: 10px;
    }

    .kampanya-banner-item {
        width: calc(50% - 5px);
        height: 120px;
        border-radius: 8px;
    }
}

@media (max-width: 360px) {
    .kampanya-banner-item {
        width: calc(50% - 5px);
        height: 100px;
    }
}

.profile-stats {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 12px;
}

.profile-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-weight: 600;
    font-size: 16px;
}

.stat-label {
    color: #8e8e8e;
    font-size: 13px;
}

.profile-actions {
    display: flex;
    margin-bottom: 12px;
}

.profile-actions button {
    flex: 1;
    padding: 5px 9px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.follow-btn {
    background-color: #0095f6;
    color: #fff;
    border: none;
    margin-right: 8px;
}

.message-btn {
    background-color: transparent;
    border: 1px solid #dbdbdb;
}

.more-options {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-left: 8px;
}

.profile-details {
    margin-top: 12px;
}

.profile-details p {
    margin-bottom: 4px;
}

.highlights {
    display: flex;
    overflow-x: auto;
    padding: 12px 0;
    border-bottom: 1px solid #dbdbdb;
}

.highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
}

.highlight-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid #dbdbdb;
    padding: 3px;
    margin-bottom: 8px;
}

.highlight-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.highlight span {
    font-size: 12px;
    color: #262626;
}

.post-nav {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #dbdbdb;
}

.post-nav a {
    display: flex;
    align-items: center;
    padding: 15px 0;
    color: #8e8e8e;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.post-nav a.active {
    color: #262626;
    border-top: 1px solid #262626;
    margin-top: -1px;
}

.post-nav i {
    margin-right: 6px;
}

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

.post {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post:hover img {
    transform: scale(1.05);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.post:hover .post-overlay {
    opacity: 1;
}

.post-btn {
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-btn {
    background-color: #0095f6;
}

.cart-btn:hover {
    background-color: #0081d6;
}

.fav-btn {
    background-color: #ed4956;
}

.fav-btn:hover {
    background-color: #d63442;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid #dbdbdb;
    display: flex;
    justify-content: space-around;
    padding: 0;
    z-index: 1000;
    background: transparent;
    overflow: hidden;
    /* pseudo blur sarkmasın */
}

.bottom-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: -1;
}



.payment-bar {
    position: fixed;
    bottom: 30px;
    left: 0;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.6);
    /* yarı saydam beyaz */
    border: 2px solid rgb(35 132 196 / 45%);
    padding: 0px 0px;
    border-radius: 0 12px 12px 0;

    z-index: 999;

    /* Blur efekti */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.payment-bar img {
    height: 26px;
    margin: 0 0px;
    object-fit: contain;
    display: inline-block;
}

.bottom-nav i {
    font-size: 27px;
    color: #262626;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 1000;
}

.dropdown-content a {
    color: #262626;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: #fafafa;
}

.show {
    display: block;
}



/* Product Container Styles */
.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px;
    background: #fff;
    margin-top: 20px;
    border: 1px solid #dbdbdb;
    border-radius: 3px;
}

.product-header {
    display: flex;
    align-items: center;
    padding: 14px;
    border-bottom: 1px solid #dbdbdb;
}

.profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
}

.profile-name {
    font-weight: 600;
    color: #262626;
    text-decoration: none;
}

.product-gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery img {
    max-width: 100%;
    max-height: 100%;
    /* object-fit: contain;*/
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.gallery-nav button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-actions {
    padding: 14px;
    border-bottom: 1px solid #dbdbdb;
}

.action-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 14px;
}

.action-buttons button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #262626;
}

.likes {
    font-weight: 600;
    margin-bottom: 8px;
}

.product-details {
    padding: 16px;
    background: #ffffff;
    border-radius: 0;
}

.product-titles {
    font-weight: 1000;
    margin-bottom: 12px;
    font-size: 25px;
    color: #212529;
    line-height: 1.3;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.product-description {
    margin-bottom: 12px;
    line-height: 1.5;
    color: #6c757d;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 16px;
}

.size-options {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.size-btn {
    padding: 8px 16px;
    border: 1px solid #dbdbdb;
    border-radius: 4px;
    background: none;
    cursor: pointer;
}

.size-btn.active {
    background: #0095f6;
    color: white;
    border-color: #0095f6;
}

.add-cart-btn {
    flex: 1;
    padding: 14px 20px;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-cart-btn:hover {
    background: #0b5ed7;
}

.add-cart-btn:active {
    background: #0a58ca;
}

.product-features {
    background: #ffffff;
    border-radius: 8px;
    padding: 16px;
    font-size: 14px;
    color: #212529;
    border: 1px solid #dee2e6;
}

.product-features p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

.product-features p:last-child {
    margin-bottom: 0;
}

.product-features i {
    color: #6c757d;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.comments {
    font-family: Arial, sans-serif;
    margin-top: 20px;
}

.comments ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-item {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-direction: column;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.comment-username {
    color: #007bff;
    cursor: pointer;
}

.comment-username:hover {
    text-decoration: none;
}

.comment-time {
    font-size: 12px;
    color: #777;
}

.comment-body {
    margin-top: 5px;
    font-size: 14px;
    color: #555;
}

.comment-actions {
    display: flex;
    gap: 10px;
    margin-top: 5px;
    font-size: 12px;
    color: #007bff;
    cursor: pointer;
}

.comment-actions button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
}

.comment-actions button:hover {
    text-decoration: none;
}

.comment-form {
    margin-top: 20px;
}

.comment-form textarea {
    width: 100%;
    height: 80px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: none;
}

.comment-form .btn-submit {
    margin-top: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.comment-form .btn-submit:hover {
    background: #0056b3;
}

.login-reminder {
    font-size: 14px;
    color: #555;
}


/* Instagram Grid Styles */

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

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.instagram-overlay-content {
    color: white;
    text-align: center;
    padding: 10px;
}

.instagram-overlay-content .price {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.instagram-overlay-content .title {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.pagination .page-link {
    color: #262626;
    border-color: #dbdbdb;
}

.pagination .active .page-link {
    background-color: #262626;
    border-color: #262626;
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
        margin: 0;
    }

    .instagram-post {
        margin: 0;
    }

    .instagram-overlay-content .price {
        font-size: 0.9rem;
    }

    .instagram-overlay-content .title {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
        margin: 0;
    }

    .instagram-post {
        margin: 0;
    }

    .instagram-overlay-content .price {
        font-size: 0.8rem;
    }

    .instagram-overlay-content .title {
        font-size: 0.6rem;
    }

    .instagram-overlay-content .badge {
        font-size: 0.6rem;
    }
}

.pagination .page-link {
    color: #262626;
    border-color: #dbdbdb;
}

.pagination .active .page-link {
    background-color: #262626;
    border-color: #262626;
}

/* Footer Styles */
footer {
    background-color: #fff;
    padding: 40px 0;
    margin-top: 60px;
    margin-bottom: 60px;
    border-top: 1px solid #dbdbdb;
}

.footer-content {
    max-width: 935px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #8e8e8e;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    text-decoration: none;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-social i {
    font-size: 20px;
    color: #8e8e8e;
    transition: color 0.3s ease;
}

.footer-social i:hover {
    color: #262626;
}

.footer-bottom {
    text-align: center;
    color: #8e8e8e;
    font-size: 12px;
}

.footer-bottom select {
    background: none;
    border: none;
    color: #8e8e8e;
    font-size: 12px;
    margin-right: 10px;
    cursor: pointer;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .profile-info {
        flex-direction: row;
        align-items: flex-start;
        padding: 30px 20px;
    }

    .profile-header {
        flex-direction: column;
        margin-right: 30px;
    }

    .profile-picture {
        width: 150px;
        height: 150px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .profile-stats {
        justify-content: flex-start;
    }

    .profile-stat {
        margin-right: 40px;
    }

    .profile-actions {
        justify-content: flex-start;
    }

    .profile-actions button {
        flex: initial;
    }
}

@media (max-width: 768px) {
    .product-container {
        margin-top: 0;
        border: none;
    }

    .product-gallery {
        aspect-ratio: 4/5;
    }

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

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

.product-gallery {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: auto;
    box-shadow: 1px 1px 3px 2px #6565653d;
    border-radius: 20px;
}

.gallery-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    transform: translateX(100%);
    transition: transform 1s ease-in-out;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.gallery-nav button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.gallery-nav button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #f58529, #dd2a7b, #8134af, #515bd4);
    transition: width 5s linear;
}

.auth-container {
    max-width: 350px;
    margin: 40px auto;
}

.auth-box {
    background: #fff;
    border: 1px solid #dbdbdb;
    border-radius: 3px;
    padding: 20px 40px;
    margin-bottom: 10px;
}

.logo {
    text-align: center;
    margin: 22px auto 12px;
}

.text {
    font-size: 32px;
    font-weight: 700;
    font-family: "Audiowide", sans-serif;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-decoration: none;
    animation: gradientMove 3s infinite linear;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

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

.form-control {
    background: #fafafa;
    border: 1px solid #dbdbdb;
    border-radius: 3px;
    padding: 9px 8px;
    font-size: 14px;
}

.btn-login {
    background: #0095f6;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 5px 9px;
    width: 100%;
    margin: 8px 0;
}

.btn-login:hover {
    background: #0081d6;
}

.divider {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: #dbdbdb;
}

.divider-text {
    color: #8e8e8e;
    font-size: 13px;
    font-weight: 600;
    margin: 0 18px;
}

.social-login {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #385185;
    font-weight: 600;
    text-decoration: none;
    margin: 8px 0;
}

.forgot-password {
    color: #00376b;
    font-size: 12px;
    text-align: center;
    display: block;
    margin: 12px 0;
    text-decoration: none;
}

.error-message {
    color: #ed4956;
    font-size: 14px;
    text-align: center;
    margin: 10px 0;
}

.form-toggle {
    text-align: center;
    margin-bottom: 20px;
}

.form-toggle button {
    background: none;
    border: none;
    color: #8e8e8e;
    font-weight: 600;
    padding: 5px 15px;
    cursor: pointer;
}

.form-toggle button.active {
    color: #0095f6;
    border-bottom: 2px solid #0095f6;
}

#registerForm {
    display: none;
}

.stories-container {
    overflow: hidden;
}

.stories-wrapper {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.stories-wrapper::-webkit-scrollbar {
    display: none;
}

.stories {
    display: flex;
    gap: 15px;
    padding: 5px;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.story-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    padding: 2px;
    margin-bottom: 5px;
}

.story-link {
    display: block;
    width: 100%;
    height: 100%;
}

.story-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
}

.story-text {
    font-size: 12px;
    color: #262626;
    max-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.story-progress {
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.progress-bar {
    height: 100%;
    background: #fff;
    width: 0;
    transition: width 0.1s linear;
}

.story-header {
    padding: 10px;
}

.story-user-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.story-username {
    font-weight: 600;
}

.story-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 80vh;
}

.story-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}


.quantity-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.quantity-selector label {
    font-size: 14px;
    font-weight: 400;
    color: #212529;
    margin: 0;
}

.quantity-selector input {
    width: 70px;
    padding: 12px 10px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    background: #ffffff;
    transition: all 0.2s ease;
}

.quantity-selector input:focus {
    outline: none;
    border-color: #86b7fe;
    background: #ffffff;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Cart action container for quantity + add to cart button */
.cart-action-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.varyant {
    margin: 15px 0;
}

.varyant h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.varyant ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.varyant ul li {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.varyant ul li:hover {
    background: #f5f5f5;
}

.varyant ul li.aktif {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

#sepete_ekle_durum {
    margin: 10px 0;
    padding: 10px;
    border-radius: 4px;
}

#sepete_ekle_durum.basari {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#sepete_ekle_durum.hata {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.share-buttons a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.share-buttons a:hover {
    opacity: 0.9;
}

.share-buttons i {
    margin-right: 10px;
    font-size: 20px;
}

.facebook-share {
    background-color: #3b5998;
}

.twitter-share {
    background-color: #1da1f2;
}

.whatsapp-share {
    background-color: #25d366;
}

.telegram-share {
    background-color: #0088cc;
}

/* Favori butonu aktif durumu */
.favorite-btn.active i {
    color: #ff4b4b;
}

/* Action butonları hover efekti */
.action-buttons button {
    transition: transform 0.2s;
}

.action-buttons button:hover {
    transform: scale(1.1);
}

[data-favori-ekle] {
    cursor: pointer;
    font-size: 24px;
    padding: 5px;
    transition: all 0.3s ease;
}



[data-favori-ekle].active i {
    color: #ff4b4b;
}

.favori-bildirim {
    display: none;
    color: #28a745;
    font-size: 14px;
    margin: 5px 0;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
}

.action-buttons {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.odeme {
    background: url('/upload/paytrguvenli.webp') no-repeat right center;
    background-size: 130px;
}

.footer-odeme-img {
    max-width: 25%;
}

/* Çift Varyant Ürün Stilleri - Sade Tema */
.cift-varyant-urun {
    position: relative;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 2px;
    padding: 12px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.cift-varyant-urun:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.cift-varyant-urun .cart-item-title {
    color: #495057 !important;
    font-weight: 500;
}

.cift-varyant-urun .varyant-bilgileri {
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 4px;
    margin-top: 6px;
    border: 1px solid #e9ecef;
    font-size: 12px;
    color: #6c757d;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cift-varyant-urun .kilif-bilgisi {
    font-weight: 600;
    color: #495057;
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 3px;
    white-space: nowrap;
}

.cift-varyant-urun .varyant-secenek {
    color: #6c757d;
}

/* Aynı ürün ID'sine sahip çift varyant ürünlerini birleştir */
.cift-varyant-urun[data-urun-id] {
    border-left: 3px solid #0d6efd;
    position: relative;
}

/* Birinci kılıf stilleri */
.cift-varyant-birinci {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.cift-varyant-birinci::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 12px;
    height: 12px;
    background-color: #0d6efd;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 2px #fff;
}

/* İkinci kılıf stilleri */
.cift-varyant-ikinci {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: 0;
    padding-top: 8px;
    background: #ffffff;
    border-color: #e9ecef;
}

/* Bağlantı çizgisi */
.cift-varyant-birinci:after,
.cift-varyant-ikinci:before {
    content: "";
    position: absolute;
    left: 50%;
    width: 1px;
    background-color: #dee2e6;
    transform: translateX(-50%);
    z-index: 1;
}

.cift-varyant-birinci:after {
    bottom: -5px;
    height: 5px;
}

.cift-varyant-ikinci:before {
    top: -5px;
    height: 5px;
}

.cift-varyant-urun:first-of-type[data-urun-id] {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0;
}

.cift-varyant-urun+.cift-varyant-urun[data-urun-id]::before {
    display: none;
}

/* Çift varyant ürünleri için sade işaretleme */
.cift-varyant-urun .cart-item-image {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.cift-varyant-urun .cart-item-image:hover {
    border-color: #adb5bd;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    transform: scale(1.01);
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 55px;
    right: 10px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

/* Instagram Tarzı Hikaye Container Stilleri */
.stories-container-ig {
    padding: 16px 0;
    /*border-bottom: 1px solid #dbdbdb;*/
    margin-bottom: 2px;
}

.stories-wrapper-ig {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.stories-wrapper-ig::-webkit-scrollbar {
    display: none;
}

.stories-ig {
    display: flex;
    gap: 7px;

    min-width: max-content;
}

.story-item-ig {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 66px;
}

.story-ring-ig {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 2px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.story-ring-ig.viewed {
    background: #c7c7c7;
}

.story-ring-ig:hover {
    transform: scale(1.05);
}

.story-link-ig {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    padding: 2px;
}

.story-img-ig {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.story-text-ig {
    font-size: 10px;
    color: #262626;
    text-align: center;
    max-width: 85px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Instagram Tarzı Modal Stilleri */
.ig-story-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ig-story-container {
    position: relative;
    width: 100%;
    max-width: 375px;
    height: 100%;
    max-height: 667px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.ig-story-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.3);
}

.ig-story-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ig-story-user-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    flex-shrink: 0;
}

.ig-story-user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ig-story-username-container {
    color: white;
}

.ig-story-username {
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.ig-story-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.ig-story-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.ig-story-progress-container {
    display: flex;
    gap: 2px;
    padding: 0 16px;
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    z-index: 4;
}

.ig-story-progress-bar {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
    overflow: hidden;
}

.ig-story-progress-fill {
    height: 100%;
    background: white;
    width: 0%;
    transition: width 0.1s linear;
}

.ig-story-content {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ig-story-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ig-story-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.ig-story-nav-left,
.ig-story-nav-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    cursor: pointer;
    z-index: 2;
    user-select: none;
}

.ig-story-nav-left {
    left: 0;
}

.ig-story-nav-right {
    right: 0;
}

.ig-story-footer {
    padding: 16px;
    display: flex;
    gap: 12px;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .ig-story-modal {
        padding: 0;
    }

    .ig-story-container {
        width: 100vw;
        height: 100vh;
        max-width: none;
        max-height: none;
        border-radius: 0;
    }

    .ig-story-header {
        padding: 12px 16px;
    }

    .ig-story-username {
        max-width: calc(100vw - 120px);
        font-size: 13px;
    }

    .ig-story-close-btn {
        font-size: 20px;
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .ig-story-header {
        padding: 10px 12px;
    }

    .ig-story-user-img {
        width: 28px;
        height: 28px;
    }

    .ig-story-username {
        font-size: 12px;
        max-width: calc(100vw - 100px);
    }

    .ig-story-close-btn {
        font-size: 18px;
        width: 24px;
        height: 24px;
    }

    .ig-story-progress-container {
        padding: 0 12px;
        top: 6px;
    }
}

.follow-btn {
    background: #0095f6;
    color: #fff;
    border: none;
    padding: 7px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.follow-btn:hover {
    background: #1877f2;
    color: #fff;
    text-decoration: none;
}

.message-btn {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 7px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.message-btn:hover {
    background: #128C7E;
    color: #fff;
    text-decoration: none;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.instagram-product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.instagram-product-card:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: #f8f9fa;
    /* Hafif gri arka plan, blur yüklenene kadar */
}

/* Eski blur yöntemi - artık kullanılmıyor */
/* .product-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
    filter: blur(18px);
    transform: scale(1.1);
} */

/* Asıl ürün görseli */
.product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

/* Product Image Blur Effect - Background Layer */
.product-image-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    opacity: 0.6;
    z-index: 1;
}

/* Product Image Blur Effect - Foreground Image */
.product-image-fg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}


.product-details {
    padding: 16px;
    background: #ffffff;
}

.cart-action-container {
    flex-direction: row;
    padding: 10px;
    gap: 10px;
    margin-bottom: 12px;
}

.quantity-selector {
    flex-direction: row;
    gap: 6px;
}

.quantity-selector label {
    font-size: 13px;
}

.quantity-selector input {
    width: 60px;
    padding: 10px 8px;
    font-size: 14px;
}

.add-cart-btn {
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 6px;
}

.product-title {
    color: #262626;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    height: auto;
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 0;
}

.old-price {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: inherit;
    color: inherit;
}

.old-price span:first-child {
    text-decoration: line-through;
    color: #8e8e8e;
    font-size: 12px;
}

.discount {
    color: #ed4956;
    font-size: 12px;
    font-weight: 600;
}

.current-price {
    color: #262626;
    font-weight: 600;
    font-size: 14px;
}

.product-buttons {
    display: none;
}

.favorite-btn {
    transition: all 0.3s ease;
}

.favorite-btn:hover i {
    transform: scale(1.1);
}

#loading {
    padding: 40px 0;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Toggle Navigation Styles */
.post-nav {
    display: flex;
    justify-content: center;
    border-top: 1px solid #dbdbdb;
    margin-top: 20px;
}

.post-nav .nav-link {
    padding: 16px 0;
    margin: 0 20px;
    color: #8e8e8e;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    transition: color 0.3s ease;
}

.post-nav .nav-link:hover {
    color: #262626;
}

.post-nav .nav-link.active {
    color: #262626;
}

.post-nav .nav-link.active::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: #262626;
}

/* Tüm Ürünler Link Styles */
.all-products-link-container {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.all-products-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: black;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.all-products-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.all-products-link:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.all-products-link:hover::before {
    left: 100%;
}

.all-products-link i:first-child {
    font-size: 16px;
}

.all-products-link i:last-child {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.all-products-link:hover i:last-child {
    transform: translateX(4px);
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

@media (max-width: 767px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .instagram-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 10px;
        padding: 10px 0;
    }



    .current-price {
        font-size: 14px;
    }

    .product-buttons {
        gap: 6px;
    }

    .product-buttons .btn-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .post-nav {
        margin: 10px -15px 0;
        padding: 0 15px;
    }

    .post-nav .nav-link {
        margin: 0 10px;
        font-size: 13px;
    }

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

    .instagram-contact-card {
        margin: 0 10px;
        border-radius: 8px;
    }

    /* Tüm Ürünler Link - Mobile */
    .all-products-link-container {
        padding: 15px 15px;
    }

    .all-products-link {
        padding: 10px 20px;
        font-size: 14px;
        gap: 10px;
        border-radius: 10px;
    }

    .all-products-link i:first-child {
        font-size: 15px;
    }

    .all-products-link i:last-child {
        font-size: 13px;
    }
}

/* İletişim Kartı Stilleri */
.instagram-contact-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Profil Bölümü */
.contact-profile {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.contact-profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.contact-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-profile-info h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.contact-profile-info p {
    margin: 5px 0 0;
    font-size: 14px;
}

/* İletişim Bilgileri Grid */
.contact-info-grid {
    padding: 20px;
    display: grid;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: #f1f3f4;
    transform: translateY(-2px);
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #0095f6;
    font-size: 18px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.contact-info-content h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #8e8e8e;
}

.contact-info-content p,
.contact-info-content a {
    margin: 4px 0 0;
    font-size: 15px;
    text-decoration: none;
}

/* Sosyal Medya Bölümü */
.contact-social {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.social-link.instagram {
    background: #e4405f;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.youtube {
    background: #ff0000;
}

@media (max-width: 767px) {
    .contact-profile {
        padding: 15px;
    }

    .contact-profile-img {
        width: 60px;
        height: 60px;
    }

    .contact-profile-info h5 {
        font-size: 16px;
    }

    .contact-info-grid {
        padding: 15px;
        gap: 15px;
    }

    .contact-info-item {
        padding: 12px;
    }

    .contact-info-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .contact-social {
        padding: 15px;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Vitrin Bölümü Stilleri */
.vitrin-section {
    margin: 30px 0;
    overflow: hidden;
}

.vitrin-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.vitrin-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #727272;
}

.vitrin-header .view-all {
    color: #0095f6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.vitrin-header .view-all:hover {
    color: #00376b;
}

.vitrin-content {
    padding: 20px;
}

.vitrin-banner {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.vitrin-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.vitrin-grid {
    padding: 0;
}

@media (max-width: 767px) {
    .vitrin-section {
        margin: 15px 0;
        border-radius: 0;
    }

    .vitrin-header {
        padding: 12px 15px;
    }

    .vitrin-header h3 {
        font-size: 16px;
    }

    .vitrin-content {
        padding: 15px;
    }

    .vitrin-banner {
        margin-bottom: 15px;
    }
}

/* Carousel Stilleri */
.carousel-section {
    margin: -20px -15px 0px;
    background: #fff;
}

.carousel {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0px 0px 3px 3px #7070701a;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out;
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.carousel-item.active {
    display: block;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.carousel-caption h5 {
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.carousel-caption p {
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-size: 1rem;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: none;
    border: 0;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}

.carousel-indicators .active {
    opacity: 1;
}

@media (max-width: 767.98px) {
    .carousel-section {
        margin: -15px -15px 0px;
    }

    .carousel-caption {
        padding: 0.75rem;
    }

    .carousel-caption h5 {
        font-size: 1rem;
    }

    .carousel-caption p {
        font-size: 0.875rem;
    }
}

/* Instagram benzeri dropdown menü stilleri */
.more-options {
    position: relative;
    display: inline-block;
}

.more-options-btn {
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.more-options-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.more-options-btn i {
    font-size: 20px;
    color: #262626;
}

.instagram-dropdown {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 200px;
    margin-top: 8px;
}

.instagram-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 16px;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: rotate(45deg);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.instagram-dropdown .dropdown-item {
    padding: 12px 16px;
    color: #262626;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: background-color 0.2s;
}

.instagram-dropdown .dropdown-item:hover {
    background-color: #f8f9fa;
}

.instagram-dropdown .dropdown-item span {
    margin-left: 8px;
}

@media (max-width: 767px) {
    .more-options-btn {
        width: 32px;
        height: 32px;
    }

    .more-options-btn i {
        font-size: 18px;
    }

    .instagram-dropdown {
        min-width: 180px;
    }

    .instagram-dropdown .dropdown-item {
        padding: 10px 14px;
        font-size: 13px;
    }
}

.whats-link {
    z-index: 100;
}



.breadcrumb-instagram {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.breadcrumb-instagram li {
    display: flex;
    align-items: center;
}

.breadcrumb-instagram li a {
    color: #262626;
    text-decoration: none;
    font-size: 14px;
}

.breadcrumb-instagram li span {
    margin: 0 8px;
    color: #8e8e8e;
}



.whats-ballon-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: fixed;
    font-size: 25px;
    text-decoration: none;
    width: auto;
    height: 43px;
    bottom: 45px;
    right: 10px;

    /* Cam efektli WhatsApp yeşili */
    background: rgba(37, 211, 102, 0.7);
    color: #FFF;

    border-radius: 50px;
    text-align: center;
    padding: 0 0px;

    /* Blur ve cam efekti */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    /* Hafif gölge */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);

    z-index: 100;
    transition: all 0.2s ease-out;
}

.whats-ballon-container:hover {
    background: rgba(37, 211, 102, 0.9);
    transform: scale(1.05);
}


.can-we-help {
    font-size: 0px;
    opacity: 0;
    animation: cwh-animation;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;

    font-family: sans-serif;
    text-decoration: none;
}

.whats-icon {
    padding: 0px 11px;
    text-decoration: none;
}

.whats-ballon-container:hover {
    transform: scale(1.1);
    background-color: #21c05b;
}

@keyframes cwh-animation {
    from {
        font-size: 0px;
        opacity: 0;
    }

    to {
        font-size: 16px;
        opacity: 1;
        padding-left: 13px;

    }
}

.nav-icon-container {
    text-decoration: none;
}

.nav-icon-container .btn {
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.nav-icon-container .btn:hover {
    background: #f8f9fa;
}

.nav-icon-container i {
    color: #262626;
}

/* ============================= */
/* 🔍 Arama sonuçları stilleri */
/* ============================= */
.search-results {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: rgb(255 255 255 / 68%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: none;
    border-radius: 12px 12px 12px 12px;
    max-height: 350px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease;
}

/* Arama sonucu öğeleri */
.search-result-item {
    display: flex;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    align-items: center;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.search-result-item:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateX(4px);
}

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

.result-image {
    width: 42px;
    height: 42px;
    margin-right: 12px;
    flex-shrink: 0;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.result-content {
    flex: 1;
    min-width: 0;
}

.result-content h6 {
    margin: 0 0 2px 0;
    font-size: 13px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.result-description {
    margin: 0 0 4px 0;
    font-size: 11px;
    color: #666;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.result-price {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.result-price .price {
    font-size: 12px;
    font-weight: 600;
    color: #111;
}

.result-price .discounted-price {
    font-size: 12px;
    font-weight: 600;
    color: #e74c3c;
}

.result-price .original-price {
    font-size: 10px;
    color: #bbb;
    text-decoration: line-through;
}

/* Diğer küçük detaylar */
.current-price {
    color: #e74c3c;
    font-weight: bold;
    font-size: 13px;
}

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

.result-category {
    color: #666;
    font-size: 11px;
}

.no-results,
.search-loading {
    padding: 18px;
    text-align: center;
    color: #777;
    font-size: 13px;
}

/* ============================= */
/* 📱 Mobil uyumluluk */
/* ============================= */
@media (max-width: 767px) {
    .search-results {
        max-height: 300px;
    }

    .result-image {
        width: 40px;
        height: 40px;
    }

    .result-content h6 {
        font-size: 13px;
    }
}

/* ============================= */
/* 🔍 Arama kutusu ve overlay */
/* ============================= */
.search-container {
    position: relative;
}

.search-box {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    padding: 25px 20px;
    width: 90%;
    max-width: 420px;
    z-index: 1001;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.35s ease;
}

.search-box.show-search {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%);
}

.search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.show-search {
    display: block;
    opacity: 1;
}

/* Input alanı */
.search-box input {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.search-box input:focus {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.4);
}

/* Basit fade animasyonu */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}