@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #fff;
}

header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
}

.logo {
    width: 120px;
    height: auto;
    display: inline-block;

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

.search-wrapper {
    position: relative;
    display: flex;
    width: 50%;
    background: #f1f3f5;
    border-radius: 50px;
    padding: 5px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.search-wrapper:focus-within {
    background: #fff;
    border-color: #31925f;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0px 12px;
    outline: none;
}

.search-btn {
    background: #31925f;
    color: white;
    border: none;
    padding: 8px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: opacity .15s;

    &:hover {
        opacity: .8;
    }
}

.search-results {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

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

.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

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

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

.result-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 4px;
    border: 1px solid #eee;
}

.result-img--filigran {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #f8f9fa;
    overflow: hidden;
}

.result-title {
    font-size: 0.85rem;
    color: #212529;
    font-weight: 500;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px;
}

.search-panel {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0px 0px 13px 0px rgb(0 0 0 / 3%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.panel-header h3 {
    font-size: 1.25rem;
    color: #333;
}

.reset-btn {
    background: #f4f4f4;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;

    img {
        width: 16px;
        height: 16px;
    }
}

.reset-btn:hover {
    background: #e0e0e0;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr) auto;
    gap: 15px;
    align-items: end;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    grid-column-end: span 2;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #777;
}

.input-group select,
.input-group input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
}

.search-action {
    grid-column-end: span 2;
    background: #31925f;
    color: white;
    border: none;
    padding: 13px 30px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity .15s;

    &:hover {
        opacity: .9;
    }
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin-top: 30px;
    align-items: start;
}

.sidebar {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 20px;
}

.filter-box {
    margin-bottom: 30px;
}

.filter-box:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f3f5;
}

.category-list {
    list-style: none;
    max-height: 300px;
    overflow-y: auto;
}

.category-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #495057;
    border-bottom: 1px solid #eef0f2;
    transition: all 0.2s ease;
}

.category-list li:hover,
.category-list li.active {
    background: #31925f;
    color: #ffffff;
}

.cat-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.brand-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 5px;
}

.brand-list::-webkit-scrollbar,
.category-list::-webkit-scrollbar {
    width: 5px;
}

.brand-list::-webkit-scrollbar-thumb,
.category-list::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border-radius: 4px;
}

.brand-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #495057;
    padding: 4px 0;
}

.brand-item input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    accent-color: #31925f;
}

.brand-name {
    flex: 1;
}

.brand-count {
    background: #f1f3f5;
    color: #6c757d;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
}


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

.product-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.product-card:hover {
    box-shadow: 0px 0px 13px 0px rgb(0 0 0 / 3%);
    border-color: #dee2e6;
}

.product-img {
    background: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    border-bottom: 1px solid #f8f9fa;
}

.product-img--filigran {
    padding: 0;
    background: #f8f9fa;
}

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

.stok-gorsel-filigran {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #eef1f3 100%);
    position: relative;
    overflow: hidden;
}

.stok-gorsel-filigran::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 14px,
        rgba(16, 97, 83, 0.035) 14px,
        rgba(16, 97, 83, 0.035) 28px
    );
    pointer-events: none;
}

.stok-gorsel-filigran-logo {
    position: relative;
    z-index: 1;
    width: 58%;
    max-width: 130px;
    opacity:0.5;
    object-fit: contain;
    filter: grayscale(15%);
    pointer-events: none;
    user-select: none;
}

.stok-gorsel-filigran--detail {
    min-height: 100%;
}

.stok-gorsel-filigran--detail .stok-gorsel-filigran-logo {
    max-width: 220px;
}

.stok-gorsel-filigran--cart {
    min-height: 100%;
}

.stok-gorsel-filigran--cart .stok-gorsel-filigran-logo {
    max-width: 46px;
}

.stok-gorsel-filigran--search .stok-gorsel-filigran-logo {
    max-width: 30px;
}

.product-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-brand {
    font-size: 0.75rem;
    font-weight: 700;
    color: #868e96;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.product-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #212529;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: auto;
}

.cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #eef0f2;
    color: #1a1a1a;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.cart-btn:hover {
    box-shadow: 0px 0px 13px 0px rgb(0 0 0 / 3%);
    border-color: #dee2e6;
}

.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon-wrapper svg {
    color: #1a1a1a;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #31925f;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 99999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.cart-total {
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.product-swiper {
    position: relative;
    margin-block: 50px;

    h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }


    .swiper-pagination {
        bottom: -40px;

        .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            border-radius: 9999px;
        }

        .swiper-pagination-bullet-active {
            background-color: #1a1a1a
        }
    }
}

.slide-header {
    position: relative;

    .swiper-button-next,
    .swiper-button-prev {
        background-color: #1a1a1a;
        border-radius: 9999px;
        width: 40px;
        height: 40px;

        svg {
            height: 20px;
            color: #ffffff;

        }
    }

    .swiper-button-prev {
        left: auto;
        right: 55px;
    }
}

.brands-slider {
    padding-top: 80px;
    padding-bottom: 40px;
}

.brandSlider {
    .swiper-slide {
        max-width: 120px;
        height: 50px;
        width: auto;

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

.features-section {
    background-color: #000000;
    padding: 40px 0;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background-color: #1a1e24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    color: #31925f;
}

.feature-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.feature-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.2;
}

.feature-content p {
    font-size: 0.85rem;
    color: #a0a6b1;
    line-height: 1.4;
    margin: 0;
}

.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 50px 0 0px 0;
    border-top: 1px solid #1a1a1a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    width: 175px;
    height: auto;
    display: inline-block;

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

.footer-about {
    color: #a0a6b1;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-block: 20px;
    max-width: 320px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: #1a1e24;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #31925f;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #a0a6b1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #a0a6b1;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.contact-item svg {
    color: #31925f;
    min-width: 18px;
    margin-top: 2px;
}

.contact-item a {
    color: #a0a6b1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding: 20px 0;
    text-align: center;
    margin-top: 30px;
}

.footer-bottom p {
    color: #6c757d;
    font-size: 0.85rem;
    margin: 0;
}

/* -------------------------------------------------- */
/* PRODUCTS PAGE                             */
/* -------------------------------------------------- */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 40px 0 80px 0;
    align-items: start;
}

.product-media {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 510px;
}

.product-media--filigran {
    padding: 30px;
    background: #ffffff;
}

.main-image {
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: zoom-in;
}

.main-image--filigran {
    cursor: default;
}

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

.main-image--filigran .stok-gorsel-filigran {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.product-summary {
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.8rem;
    font-weight: 700;
    color: #31925f;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.p-title {
    font-size: 1.75rem;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 15px;
}

.product-code-wrap {
    display: flex;
    gap: 8px;
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f3f5;
}

.code-value {
    font-weight: 600;
    color: #212529;
}

.product-price-wrap {
    margin-bottom: 25px;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
    align-items: stretch;
}

.product-action-buttons {
    flex: 1;
    display: flex;
    gap: 15px;
    min-width: 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 48px;
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

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

.quantity-selector input {
    width: 50px;
    height: 48px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    outline: none;
    -moz-appearance: textfield;
    appearance: textfield;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.buy-btn {
    flex: 1;
    min-width: 0;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #31925f;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-btn:hover {
    background-color: #3bab6f;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 255, 72, 0.25);
}

.product-description-box {
    background-color: #f8f9fa;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 20px;
}

.product-info-box {
    background-color: #f8f9fa;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 20px;
}

.product-info-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.product-info-box p {
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

.product-info-tab-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 12px;
}

.product-info-tab-btn {
    appearance: none;
    border: none;
    background: transparent;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.product-info-tab-btn:hover {
    color: #31925f;
    background-color: rgba(49, 146, 95, 0.08);
}

.product-info-tab-btn.active {
    color: #31925f;
    background-color: rgba(49, 146, 95, 0.12);
}

.product-info-tab-panel {
    display: none;
}

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

.product-spec-list {
    margin: 0;
}

.product-spec-row {
    display: grid;
    grid-template-columns: minmax(120px, 38%) 1fr;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.product-spec-row:first-child {
    padding-top: 0;
}

.product-spec-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.product-spec-row dt {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6c757d;
    margin: 0;
}

.product-spec-row dd {
    font-size: 0.9rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.product-description-box h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.product-description-box p {
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

.whatsapp-btn {
    flex: 1;
    min-width: 0;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25d366;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.whatsapp-btn svg {
    width: 18px;
    height: 18px;
}

.whatsapp-btn:hover {
    background-color: #20ba5a;
}

.whatsapp-btn--checkout {
    width: 100%;
    height: 44px;
    margin-top: 4px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
}

.vitrin-flash {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1200;
    background-color: #31925f;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* -------------------------------------------------- */
/* SEPET SAYFASI                             */
/* -------------------------------------------------- */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    margin: 40px 0 60px 0;
    align-items: start;
}

.cart-layout--empty {
    grid-template-columns: 1fr;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #eef0f2;
    margin-bottom: 20px;
}

.cart-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-title-wrap h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.cart-count {
    background-color: #f1f3f5;
    color: #495057;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.clear-cart-btn {
    background: none;
    border: none;
    color: #747474;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s ease;
}

.clear-cart-btn:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    min-height: 360px;
    padding: 48px 24px;
    background: #ffffff;
    border: 1px dashed #dde2e6;
    border-radius: 12px;
}

.cart-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #f1f3f5;
    color: #868e96;
}

.cart-empty-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.cart-empty-text {
    max-width: 360px;
    font-size: 14px;
    line-height: 1.5;
    color: #747474;
}

.cart-empty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 13px 30px;
    background: #31925f;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.cart-empty-btn:hover {
    opacity: 0.9;
    color: #ffffff;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 16px;
    position: relative;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border: 1px solid #f1f3f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    text-decoration: none;
}

.cart-item-img--filigran {
    padding: 0;
    background: #f8f9fa;
}

.cart-item-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-category {
    font-size: 11px;
    font-weight: 700;
    color: #31925f;
}

.cart-item-title-link {
    text-decoration: none;
    color: inherit;
}

.cart-item-title-link:hover .cart-item-title {
    color: #31925f;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.cart-item-code {
    font-size: 12px;
    color: #6c757d;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-item-price {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    min-width: 90px;
    text-align: right;
}

.remove-item-btn {
    background: none;
    border: none;
    color: #adb5bd;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.remove-item-btn:hover {
    color: #dc3545;
}

.order-summary-box {
    background-color: #f8f9fa;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 20px;
    position: sticky;
    top: 20px;
}

.order-summary-box h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    color: #495057;
    margin-bottom: 12px;
}

.summary-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 16px 0;
}

.total-row {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.checkout-btn {
    width: 100%;
    height: 44px;
    background-color: #31925f;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.checkout-btn:hover {
    background-color: #3bab6f;
}

.cart-item-actions {
    .quantity-selector {
        height: 28px;
        border-radius: 6px;
    }

    .qty-btn {
        width: 24px;
        height: 100%;
        font-size: 13px;
    }

    input {
        width: 26px;
        height: 100%;
        font-size: 12px;
        font-weight: 700;
    }
}

/* -------------------------------------------------- */
/* RESPONSIVE BREAKPOINTS                             */
/* -------------------------------------------------- */
@media (max-width: 1400px) {
    .container {
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .feature-item {
        flex-direction: column;
    }

    .feature-content {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-media {
        padding: 16px;
    }

    .product-title {
        font-size: 18px;
    }

    .main-image {
        aspect-ratio: 2 / 1;
        height: auto;
    }

    .cart-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        gap: 15px;
    }

    .search-wrapper {
        width: 100%;
        order: 3;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .whatsapp-btn {
        font-size: 14px;
        padding: 8px 19px;
        align-items: center;

        img {
            width: 20px;
            height: 20px;
        }
    }

    .search-grid {
        grid-template-columns: repeat(4, 1fr) auto;
    }

    .search-action {
        grid-column-end: span 4;
    }

}

@media (max-width: 600px) {
    .search-grid {
        grid-template-columns: repeat(3, 1fr) auto;
    }

    .input-group {
        grid-column-end: span 4;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-item {
        flex-direction: row;
    }

    .feature-content {
        text-align: left;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }

    .feature-content h4 {
        font-size: 14px;
    }

    .logo {
        width: 100px;
    }

    .cart-item {
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px;
    }

    .cart-item-info {
        min-width: calc(100% - 110px);
    }

    .remove-item-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #ffffff;
        border-radius: 999px;
    }

    .cart-item-actions {
        width: 100%;
        justify-content: space-between;
        padding-top: 10px;
        border-top: 1px dashed #f1f3f5;
    }

    .cart-item-price {
        min-width: auto;
    }

    .cart-layout{
        margin-top: 20px;
    }
}

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

    .product-title {
        font-size: 0.8rem;
    }

    .product-price {
        font-size: 1rem;
    }

    .product-swiper {
        h3 {
            font-size: 20px;
        }
    }

    .slide-header {

        .swiper-button-next,
        .swiper-button-prev {
            width: 35px;
            height: 35px;

            svg {
                height: 16px;
            }
        }

        .swiper-button-prev {
            right: 50px;
        }
    }

    .brandSlider {
        .swiper-slide {
            height: 40px;
        }
    }

    .cart-total {
        display: none;
    }

    .cart-btn {
        padding: 13px 17px 8px 10px;
    }

    .p-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .product-category {
        font-size: 11px;
    }

    .product-code-wrap {
        font-size: 12px;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .product-price-wrap {
        margin-bottom: 16px;
    }

    .product-actions {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
    }

    .product-action-buttons {
        flex: 1 1 100%;
        flex-direction: column;
        gap: 10px;
    }

    .buy-btn,
    .whatsapp-btn {
        flex: none;
        width: 100%;
        height: 40px;
        font-size: 14px;
    }

    .product-description-box {
        padding: 12px;
    }

    .main-image {
        aspect-ratio: 1 / 1;
    }

    .product-detail-layout {
        margin-top: 20px;
    }

    .whatsapp-btn {
        white-space: normal;
        text-align: center;
    }

    .quantity-selector {
        height: 40px;
    }

    .qty-btn {
        width: 32px;
        font-size: 16px;
    }

    .quantity-selector input {
        width: 36px;
        font-size: 14px;
    }
}

/* Laravel vitrin: işlevsel eklemeler (görsel tasarımı bozmaz) */
.vitrin-hidden-gallery {
    display: none;
}

.vitrin-inline-form {
    display: contents;
}

.vitrin-pagination {
    margin: 24px 0 40px;
    text-align: center;
}

.vitrin-pagination nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.vitrin-pagination a,
.vitrin-pagination span {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    color: #334155;
}

.vitrin-pagination span[aria-current="page"] {
    background: #31925f;
    color: #fff;
    border-color: #31925f;
}
