.siparis-buton-wrapper {
    display: flex;
    gap: 6px;
    margin: 8px 0 10px;
    width: 100%;
    box-sizing: border-box;
}

.siparis-buton-wrapper .siparis-buton {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 8px;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: opacity 0.2s ease, transform 0.2s ease;
    min-height: 28px;
    box-sizing: border-box;
    white-space: nowrap;
}

.siparis-buton-wrapper .siparis-buton:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.siparis-buton-wrapper .siparis-buton:focus {
    outline: 2px solid #555;
    outline-offset: 2px;
}

.siparis-buton-wrapper .siparis-buton-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.siparis-buton-wrapper .siparis-buton-icon svg {
    display: block;
    width: 14px;
    height: 14px;
}

.siparis-buton-wrapper .siparis-buton-text {
    font-size: 12px;
    letter-spacing: 0.2px;
}

/* Urun resimleri uzerinde capraz yansima efekti */
ul.products li.product a.woocommerce-loop-product__link,
ul.products li.product a {
    position: relative;
    overflow: hidden;
    display: block;
}

ul.products li.product a.woocommerce-loop-product__link::before,
ul.products li.product a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.12) 40%,
        rgba(255, 255, 255, 0.04) 45%,
        rgba(255, 255, 255, 0) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 400% 400%;
    background-position: 0% 0%;
    animation: siparis-shine 6s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes siparis-shine {
    0% {
        background-position: 0% 0%;
    }
    45% {
        background-position: 100% 100%;
    }
    55% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@media (max-width: 480px) {
    .siparis-buton-wrapper .siparis-buton {
        font-size: 11px;
        padding: 5px 6px;
        min-height: 26px;
    }
    .siparis-buton-wrapper .siparis-buton-text {
        font-size: 11px;
    }
}
