/* ========== ÜRÜNLER SECTION ========== */
.row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    perspective: 2000px;
}

.card {
    border-radius: 28px;
    border: 1px solid rgba(134,183,106,0.2);
    background: radial-gradient(circle at top left, rgba(134,183,106,0.12), rgba(10,14,11,0.98)), linear-gradient(145deg, rgba(18,26,17,0.98), rgba(8,12,8,0.98));
    padding: 20px 20px 22px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.95), 0 0 0 1px rgba(134,183,106,0.1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    opacity: 0;
    transition: all 1200ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card.enter-right {
    transform: translate3d(200px, 100px, -400px) rotateY(90deg) rotateX(30deg);
}

.card.enter-left {
    transform: translate3d(-200px, 100px, -400px) rotateY(-90deg) rotateX(30deg);
}

.card.enter-bottom {
    transform: translate3d(0, 200px, -400px) rotateX(90deg);
}

.card.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateY(0) rotateX(0);
}

.card::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 10% 10%, rgba(134,183,106,0.15), transparent 50%), radial-gradient(circle at 90% 90%, rgba(134,183,106,0.08), transparent 50%);
    animation: cardLight 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cardLight {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    50% { transform: translate(5%, 5%) scale(1.1); opacity: 1; }
}

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(134,183,106,0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 500ms ease-out;
    pointer-events: none;
}

.card:hover::after {
    opacity: 1;
}

.card-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.card-media {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(134,183,106,0.25);
    background: radial-gradient(circle at center, #1a2618, #080b08);
    box-shadow: 0 16px 40px rgba(0,0,0,0.9), inset 0 0 50px rgba(134,183,106,0.05);
    position: relative;
}

.card-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(134,183,106,0.1), transparent);
    opacity: 0;
    transition: opacity 600ms ease-out;
    z-index: 1;
    pointer-events: none;
}

.card:hover .card-media::before {
    opacity: 1;
}

.card-media-frame {
    position: relative;
    width: 100%;
    padding-top: 100%;
}

.card-media-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.15);
    opacity: 0;
    transition: all 1000ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-media-frame img.img-visible {
    opacity: 1;
    transform: scale(1.05);
}

.card:hover .card-media-frame img {
    transform: scale(1.12);
}

.card-tag {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
}

.card-title {
    font-size: 17px;
    margin-bottom: 4px;
    transition: color 300ms ease-out;
}

.card:hover .card-title {
    color: var(--accent-green);
}

.card-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
}

.card-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 11px;
    color: var(--text-muted);
}

.dot-row {
    display: inline-flex;
    gap: 4px;
}

.dot-row span {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(134,183,106,0.3);
    animation: dotPulseRow 2s ease-in-out infinite;
}

.dot-row span:nth-child(2) { animation-delay: 0.2s; }
.dot-row span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulseRow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 1; }
}

.card-btn {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(134,183,106,0.4);
    background: radial-gradient(circle at top, rgba(134,183,106,0.2), rgba(9,12,9,0.98));
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    cursor: pointer;
    transition: all 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.card-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 999px;
    background: rgba(134,183,106,0.3);
    transform: translate(-50%, -50%);
    transition: width 700ms ease-out, height 700ms ease-out;
}

.card-btn:hover::before {
    width: 350px;
    height: 350px;
}

.card-btn span.arrow {
    display: inline-block;
    transform: translateX(0) translateZ(0);
    transition: transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-btn:hover span.arrow {
    transform: translateX(7px) translateZ(8px);
    animation: arrowBounce 0.6s ease-in-out infinite;
}

.card-btn:hover {
    transform: translateY(-4px) translateZ(25px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0,0,0,0.95), 0 0 50px rgba(134,183,106,0.7);
    background: radial-gradient(circle at top, rgba(134,183,106,0.4), rgba(9,12,9,0.98));
    border-color: rgba(134,183,106,0.9);
}

.card:hover {
    transform: translate3d(0, -12px, 40px) rotateX(5deg);
    box-shadow: 0 45px 100px rgba(0,0,0,0.98), 0 0 60px rgba(134,183,106,0.4);
    border-color: rgba(134,183,106,0.5);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .row {
        grid-template-columns: minmax(0, 1fr);
    }
    
    .card-btn {
        text-decoration: underline;
        text-decoration-color: rgba(134,183,106,0.5);
        text-underline-offset: 4px;
        text-decoration-thickness: 2px;
    }
}