.gecko-store-section {
    padding: 60px 20px;
    background: #f7f7f7;
}

.gecko-store-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gecko-store-title {
    text-align: center;
    font-size: 34px;
    margin: 0 0 10px;
    color: #222;
}

.gecko-store-subtitle {
    text-align: center;
    color: #666;
    margin: 0 0 35px;
}

.gecko-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.gecko-card-front {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gecko-card-front:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}

.gecko-card-image-wrap {
    position: relative;
    background: #eee;
}

.gecko-card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.gecko-card-content {
    padding: 20px;
    text-align: center;
}

.gecko-card-name {
    margin: 0 0 10px;
    font-size: 22px;
    color: #222;
}

.gecko-card-price {
    font-size: 22px;
    font-weight: bold;
    color: #6F9940;
    margin-bottom: 16px;
}

.gecko-view-btn,
.gecko-purchase-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.gecko-view-btn:hover,
.gecko-purchase-btn:hover {
    opacity: 0.9;
}

.btn-green { background: #4caf50; }
.btn-blue { background: #2196f3; }
.btn-orange { background: #ff9800; }
.btn-brown { background: #8d6e63; }
.btn-black { background: #222; }

.gecko-badge-sold {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #b02a37;
    color: #fff;
    padding: 7px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
}

.gecko-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    color: #666;
    background: #e9e9e9;
}

.gecko-no-image.large {
    min-height: 360px;
}

.gecko-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.gecko-modal.active {
    display: block;
}

.gecko-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.gecko-modal-box {
    position: relative;
    z-index: 2;
    max-width: 980px;
    width: calc(100% - 30px);
    margin: 50px auto;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.gecko-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: transparent;
    border: none;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    color: #444;
    z-index: 3;
}

.gecko-modal-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.gecko-modal-image-col {
    background: #f0f0f0;
}

.gecko-modal-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

.gecko-modal-content-col {
    padding: 35px 30px;
}

.gecko-modal-title {
    margin: 0 0 12px;
    font-size: 32px;
    color: #222;
}

.gecko-modal-price {
    font-size: 28px;
    font-weight: bold;
    color: #6F9940;
    margin-bottom: 14px;
}

.gecko-modal-code {
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
}

.gecko-modal-description {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 28px;
}

.gecko-modal-actions {
    margin-top: 10px;
}

.gecko-sold-btn {
    display: inline-block;
    background: #b02a37;
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: bold;
}

body.gecko-modal-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .gecko-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gecko-modal-inner {
        grid-template-columns: 1fr;
    }

    .gecko-modal-image {
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .gecko-store-section {
        padding: 40px 15px;
    }

    .gecko-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gecko-card-image {
        height: 240px;
    }

    .gecko-store-title {
        font-size: 28px;
    }

    .gecko-modal-box {
        width: calc(100% - 16px);
        margin: 15px auto;
    }

    .gecko-modal-content-col {
        padding: 24px 18px;
    }

    .gecko-modal-title {
        font-size: 26px;
    }

    .gecko-modal-price {
        font-size: 24px;
    }

    .gecko-modal-description {
        font-size: 15px;
    }

    .gecko-modal-image {
        min-height: 260px;
    }

    .gecko-view-btn,
    .gecko-purchase-btn,
    .gecko-sold-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}